Skip to main content

Deigning a Simple HTML Menu-Bar Using CSS

Deigning a Simple HTML Menu-Bar Using CSS

In this post I’m going to show how you can create a menu-bar (list of hyperlinks) using CSS styling. This requires that you at least have some basic knowledge of HTML and preferably CSS too. If you can’t figure out what a menu-bar looks like, scroll to the bottom.

Seen! Though pretty much the same can be implemented using tables but that is not web developers prefer.

In HTML there is not standard tag for creating a menu like item therefore we would be customized or style a standard tag. We’ll be using the ‘unordered list’ <ul></li> tag to do so, in this case every item i.e. <li></li> will be items in the menu.

Let us first start by creating an unordered list as follows:

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
</ul>

It shows up something like below:

  • Item 1
  • Item 2

Obviously this is not what we want; items here are displaying Bullets and are one below the other while we want them to be in one line, one after the other. To achieve this we’ll style his ‘unordered list’ by defining a CSS class, then applying it to this tag.

<head>
<style>
.menu ul
{
    list-style: none;
}
</style>
</head>

<body>
<div class="menu">
    <ul>
        <li>Item 1</li>
        <li>Item 2</li>
    </ul>
</div>
</body>

Here we have defined a CSS class in between the <style></style> tags. It contains the property list-style: none for the <ul> tag, this would make the unordered list classified by menu class to NOT to display the bullets beside each item.

  • Item 1
  • Item 2

Great! And by the way if you don’t know what a CSS class is, for now you can think of it as a way of defining properties in CSS which could be used in HTML to classify different parts or tags to have properties as defined. You can see in the above code we have used <div class="menu"></div> to classify that portion and all the tags between it to have the special property defined in CSS.

Coming to the menu bar, it still has a big problem that it doesn’t look like a Menu. Well the same list would look like a menu if we style it, for this we would have to define display: inline for the <li> tag of the unordered list. This would make the items in the list to be in ONE line hence look like a Menu.

<head>
<style>
.menu ul
{
    list-style: none;
}

/*We want the <li> (items) to be inline*/
.menu ul li
{
    display: inline;
}
</style>
</head>

<body>
<div class="menu">
   <ul>   
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
   </ul>
</div>
</body>

Menu bar would look like:

  • Item 1
  • Item 2
  • Item 3
  • Item 4

Ok now our menu bar is almost done, now we just have to make it more attractive and to react to mouse activity. For this we’ll add some more code to the CSS (style sheet):

Added stuff is self explanatory, padding is used to increase the clickable are of the menu items. Now the Menu Bar would look like:

NOTE: Hover effect is not working here, because Icannot add stylesheet for seperate pages in Blogger and I don't want to mess up the CSS Validity of this page.

Below is the complete code listing:


  <html>
  <head>

  <title>Menu Bar Using CSS</title>

  <style>
  .menu ul
  {
    list-style: none;
  }

  .menu ul li
  {
    display: inline;
  }

  .menu ul li a
  {
    /*Increase Clickable Area*/
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;

    /*Remove the Underline for the Link*/
    text-decoration: none;

    color: #000;
    background: #ccc;
  }

  /*On Mouse Over the Link*/
  .menu ul li a:hover
  {
    color: #fff;
    background: #000;
  }
  </style>

  </head>

  <body>
  <div class="menu">

    <ul>

      <li><a href="#">Item 1</a></li>
      <li><a href="#">Item 2</a></li>
      <li><a href="#">Item 3</a></li>
      <li><a href="#">Item 4</a></li>

    </ul>
  </div>
  </body>
  </html>

Previous Posts:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope