Archive for the ‘CSS’
CSS horizontal drop down menu tutorial
We will create horizontal drop down menu that works with any explorer.
Let’s start:
Open your .css style file and type these lines :
Create your css drop down menu div object. You can color it’s background with any color and change width to any size.
#menu {
width: 100%;
background: #ffffff;
float: left;
border-bottom:1px solid #ccc;
}
Next we will create list object for [...]
Horizontal CSS menu
Hello, we will create today great horizontal CSS menu used at Youtube Video Collector website.
You can use this CSS code to create your horizontal menu. It works great with any browser.
/** MAIN-MENU */
#main-menu {
margin: 0px 0px 10px 0px;
text-transform: uppercase;
height: 55px;
}
#main-menu ul {
margin: 0 auto;
padding: 11px 0px 0px 7px;
list-style: none;
}
#main-menu li {
display: inline;
position: relative;
}
#main-menu a {
padding: [...]
Best css font family combination
Hello,
after lots of tutorials of website design we’ve chosen best css font combination , now our penguin websites are looks much better.
Check it out :
font-family: Arial, Helvetica, Tahoma, sans-serif;
Good luck coding and greetings from Pengland !