كيفية إنشاء: قائمة مرجعية مستقلة أفقية

تعلم كيفية استخدام CSS لإنشاء قائمة مرجعية مستقلة أفقية.

جرب بنفسك

كيفية إنشاء قائمة مرجعية مستقلة أفقية

الخطوة الأولى - إضافة HTML:

<div class="scrollmenu">
  <a href="#home">Home</a>
  <a href="#news">News</a>
  <a href="#contact">Contact</a>
  <a href="#about">About</a>
  ...
</div>

الخطوة الثانية - إضافة CSS:

استخدام overflow:auto و white-space:nowrap للسماح بتصفح قائمة التوجيه:

div.scrollmenu {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
}
div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
div.scrollmenu a:hover {
  background-color: #777;
}

جرب بنفسك

الصفحات ذات الصلة

دليل:شريط التصفح CSS