开发者

How to make a drop down menu?

开发者 https://www.devze.com 2022-12-15 11:09 出处:网络
Using CSS style Sheet I have the buttonimages, I want to add a button images in to my web page menus For Example

Using CSS style Sheet

I have the button images, I want to add a button images in to my web page menus

For Example

Home           Co开发者_运维百科ntact 
 ->Aboutus        -> Location 

Home, Contact (menu)
Aboutus, Location(sub menu)

Button images name - button1.jpg

I want to add a my button image in the background of menus and sub menus

am new to web page designer

Need CSS Style Sheet Code.


Pure CSS Dropdown Menu: http://meyerweb.com/eric/css/edge/menus/demo.html

Horizontal Dropdown Menu: http://www.alistapart.com/articles/horizdropdowns/

CSS-Javascript Dropdown menu: http://www.dynamicdrive.com/dynamicindex1/chrome/index.htm


You need to use: CSS background-image Property

Example:

.menu
{
  background-image:url('image.gif');
}

Then in your html add the above class:

<ul>
  <li class="menu">Home</li>
  <li class="menu">About Us</li>
  <li class="menu">Contact Us</li>
</ul>


This example was really easy to implement. It doesn't focus on IE6 JS issues. you'll need to use JS or JQuery to resolve those issues with IE not using :hover pseudoclass The No-Code Way to a Pure CSS Horizontal Drop-Down Menu with Expression Web

0

精彩评论

暂无评论...
验证码 换一张
取 消