asked on
<div id="banner">
<marquee direction="left" class = "banner" behavior="scroll" height="29px">
'D#.('1 'D,/J/) GF'
<img src="images/yellowdot.gif" />
</marquee>
</div>
ASKER
<div id="banner">
<marquee direction="left" class = "banner" behavior="scroll" height="29px" align="middle">
'D#.('1 'D,/J/) GF'
<img src="images/yellowdot.gif" />
</marquee>
</div>
ASKER
ASKER
div#banner {
margin: 0;
padding: 5px 0;
background: url('images/banner.gif') repeat-x;
}
ASKER
HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.
TRUSTED BY
#banner img {
border: none;
vertical-align: middle;
}
if you would like to apply that style to all images (vertically aligned to text) just remove #banner. :)
Hope this helps