Thu Jun 4 02:05:29 PM MDT 2026 Well, today is another day. It would be nice to be able to understand this stress and anxiety I have been facing. It’s been going on for far too long. I need it to stop, or find a way to make it stop. Some medication can help from time to time, but I don’t want to be reliant on that medication every single day. I don’t know, maybe there’s no way to get around that thought process? Not sure. Not sure I ever know what this life is all about with these challenges I face on a day-to-day basis. Easier than it sounds, right? Yeah…that’s what I’ve been thinking. Too many damn thoughts in my mind at times. I’m not sure what to do with them all. Some are out to get me, I fear. I can’t let them win though. They need to stay the hell away from me! Life has its ups and downs, no one can argue that point. It’s not meant to be a terrible place to live in, but if I can’t figure it out? What am I supposed to do about it? I don’t know. Thu Jun 04 02:21:33 PM MDT 2026...
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