Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

CSS के साथ Icon Bar कैसे बनाएं?


CSS के साथ Icon Bar बनाने के लिए, कोड इस प्रकार है -

उदाहरण

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.icon-bar {
   width: 100%;
   background-color: black;
   overflow: auto;
}
.icon-bar a {
   float: left;
   width: 30%;
   text-align: center;
   color: white;
   font-size: 30px;
}
.active {
   background-color: blue;
}
</style>
<body>
   <div class="icon-bar">
      <a href="#"><i class="fa fa-home"></i></a>
      <a href="#"><i class="fa fa-search"></i></a>
      <a class="active" href="#"><i class="fa fa-bars"></i></a>
   </div>
</body>
</html>

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

CSS के साथ Icon Bar कैसे बनाएं?

उदाहरण

आइए अब एक और उदाहरण देखें जिसमें हम वर्टिकल आइकन बार बनाएंगे -

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.icon-bar {
   width: 50px;
   background-color: black;
}
.icon-bar a {
   display: block;
   text-align: center;
   color: white;
   font-size: 30px;
}
.active {
   background-color: blue;
}
</style>
<body>
   <div class="icon-bar">
      <a class="active" href="#"><i class="fa fa-home"></i></a>
      <a href="#"><i class="fa fa-search"></i></a>
      <a href="#"><i class="fa fa-bars"></i></a>
   </div>
</body>
</html>

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

CSS के साथ Icon Bar कैसे बनाएं?


  1. CSS के साथ चैट मैसेज कैसे बनाएं?

    सीएसएस के साथ चैट संदेश बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style>    body {       margin: 0 auto;       m

  1. CSS के साथ सेक्शन काउंटर कैसे बनाएं?

    CSS के साथ एक सेक्शन काउंटर बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fon

  1. CSS के साथ ऑन स्क्रॉल फिक्स्ड नेविगेशन बार कैसे बनाएं?

    CSS स्थिति विशेषता निर्दिष्ट करके, हम CSS का उपयोग करके एक निश्चित नेविगेशन बार बना सकते हैं। CSS में पोजिशन प्रॉपर्टी का सिंटैक्स इस प्रकार है - Selector {    position: /*value*/; } निम्नलिखित सीएसएस स्थिति संपत्ति का एक उदाहरण है। उदाहरण <!DOCTYPE html> <html> <head>