कैसे करें - निश्चित मेनू
CSS के साथ "फिक्स्ड" मेनू बनाने का तरीका जानें।
फिक्स्ड टॉप मेन्यू कैसे बनाएं
चरण 1) HTML जोड़ें:
उदाहरण
<div class="navbar">
<a href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
</div>
<div class="main">
<p>Some text some text some text some text..</p>
</div>
चरण 2) सीएसएस जोड़ें:
एक निश्चित शीर्ष मेनू बनाने के लिए, और का उपयोग position:fixed
करें top:0
। ध्यान दें कि निश्चित मेनू आपकी अन्य सामग्री को ओवरले कर देगा। इसे ठीक करने margin-top
के लिए, एक (सामग्री में) जोड़ें जो आपके मेनू की ऊंचाई के बराबर या उससे बड़ा हो।
उदाहरण
/* The navigation bar */
.navbar {
overflow: hidden;
background-color: #333;
position: fixed; /* Set
the navbar to fixed position */
top: 0;
/* Position the navbar at the top of the page */
width:
100%; /* Full width */
}
/* Links inside the navbar */
.navbar a {
float: left;
display:
block;
color: #f2f2f2;
text-align:
center;
padding: 14px 16px;
text-decoration: none;
}
/* Change background on mouse-over */
.navbar
a:hover {
background: #ddd;
color:
black;
}
/* Main
content */
.main {
margin-top: 30px; /* Add a top
margin to avoid content overlay */
}
फिक्स्ड बॉटम मेन्यू कैसे बनाएं
एक निश्चित निचला मेनू बनाने के लिए, उपयोग करें position:fixed
और
bottom:0
:
उदाहरण
/* The navigation bar */
.navbar {
position: fixed; /* Set the navbar to fixed position */
bottom: 0;
/* Position the navbar at the bottom of the page */
width:
100%; /* Full width */
}
/* Main
content */
.main
{
margin-bottom: 30px; /* Add a bottom margin to avoid content overlay */
}
युक्ति: नेविगेशन बार के बारे में अधिक जानने के लिए हमारे CSS नेवबार ट्यूटोरियल पर जाएँ।