Okay, okay. So…what happened to Lex? Did Lex die? He and Clark went down in the huge ice/crystal Fortress of Solitude thing as it collapsed all around them and then what? Season Eight starts and there’s no Lex! What happened to Lex? I had to google it, and the actor wanted to pursue other things in his career, a noble choice, and they brought in this Tess Mercer chick? What the hell is going on with her?! I want Lex back! I mean, first Lionel, now Lex? WTF man?! Why is this happening? I get it, shows that last for a while they tend to fizzle out every now and then and it’s time to bring in new blood into the family. But seriously? Lex? Lex Luthor? He’s Superman’s arch enemy! You can’t kill the guy! Can you?! If they did kill him, then I guess he’s dead. Gone. Kaput! But come on now. WTF mate?!
Here's a fun little css stylesheet that one can use for menus.
The CSS for the menu is:
#menu {
padding:0px;
width:120px;
}
#menu a {
text-decoration:none;
color:#000;
display:block;
border:1px solid #fff;
padding-left:3px;
}
#menu a:hover {
border:1px solid #000;
}
Which you can use with the following html:
<ul id="menu">
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
This will producde a simple menu that when hovered over will display a black box around the menu item.
Of course you can change the background color, or the font etc. to whatever you need it to be. Ah the simplicity that is CSS.
Comments
Post a Comment