Simon Tite
2:08 pm on October 18, 2009 |
Answers: 1 Tags: background color, banner (3), banner text, css (19), div, div class, html (10), html banner, lt
Rate Knowledge: (1 votes)
Loading ...
How to make a simple banner extend across whole page width.
Simon Tite
2:13 pm on October 18, 2009
HTML: <div class="banner">My banner text & other stuff</div>
CSS:
.banner {
text-align: center; /* if you like... */
/*********this is the important bit! ************************/
margin: 0px; /* no space around the box */
width: 100%;
/************t*******************************************/
background-color: slategray;
}
Simon Tite 2:13 pm on October 18, 2009
HTML:
<div class="banner">My banner text & other stuff</div>CSS: