Forum Moderators: not2easy
This is probably a seriously easy thing to do but having tried a few things I still can't work it out!
I've made a list which is seperated with a border (bottom) I'd like to take it off on the bottom <li>
Any help much appreciated!
Html uploaded to:
<snip>
CSS uploaded to:
<snip>
Thanks in advance!
[edited by: swa66 at 4:48 pm (utc) on July 16, 2009]
[edit reason] No URLs, please see ToS and forum charter [/edit]
and a warm welcome to these forums. ;)
Does this example help?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css"><title></title>
<style type="text/css">
#mylist {
background-color:#fee;
}
#mylist li {
margin-bottom:5px;
border-bottom:1px solid #000;
background-color:#eef;
}[blue]
#mylist #noborder {
margin-bottom:0;
border-bottom:0;
}[/blue]
</style></head>
<body><ul id="mylist">
<li>list one</li>
<li>list two</li>
<li>list three</li>
<li [blue]id="noborder"[/blue]>list four</li>
</ul></body>
</html>
it really is a pity that you did not proffer this information when you had your scissors out yesterday. :(
I am sure that it could have saved my little grey cells from all that debilitating effort. ;)
birdbrain
No problem, you're very welcome. ;)
I am seeing #a3b02f on hover using Firefox 3.5.2 ;)
birdbrain