Is there any CSS way to make a <hr /> noshadow so I don't get the default 3D
look in Netscape?
I tried to use some border-bottom to make the line, but my "line" should be
under text that is hanging to the right of a image with "float: left" and if
I use border, the line is extended under the image. Also, I thing the <hr />
divider fits the meaning of the text quite well. But if somebody has better
idea than using <hr /> thats also suitable.
I want to get the following
LOGO Main Title
LOGO ------------------------------------------
LOGO Second Title
here is example in HTML:
<img class="logo" src="logo.gif" />
<h1 class="mname">M ain Title</h1>
<hr class="title" />
<h1 class="sname">S econd Title</h1>
and in the CSS:
hr.title {
color: #677379;
}
img.logo {
float: left;
margin-left: 5px;
margin-right: 5px;
}
..sname {
color: #677379;
letter-spacing: .5em;
text-align: right;
font: italic normal normal large sans-serif;
font-style: italic;
margin: 0px;
padding: 0px;
}
..mname {
font: normal normal normal small sans-serif;
margin: 0px;
padding: 0px;
}
suncho
look in Netscape?
I tried to use some border-bottom to make the line, but my "line" should be
under text that is hanging to the right of a image with "float: left" and if
I use border, the line is extended under the image. Also, I thing the <hr />
divider fits the meaning of the text quite well. But if somebody has better
idea than using <hr /> thats also suitable.
I want to get the following
LOGO Main Title
LOGO ------------------------------------------
LOGO Second Title
here is example in HTML:
<img class="logo" src="logo.gif" />
<h1 class="mname">M ain Title</h1>
<hr class="title" />
<h1 class="sname">S econd Title</h1>
and in the CSS:
hr.title {
color: #677379;
}
img.logo {
float: left;
margin-left: 5px;
margin-right: 5px;
}
..sname {
color: #677379;
letter-spacing: .5em;
text-align: right;
font: italic normal normal large sans-serif;
font-style: italic;
margin: 0px;
padding: 0px;
}
..mname {
font: normal normal normal small sans-serif;
margin: 0px;
padding: 0px;
}
suncho
Comment