answersLogoWhite

0

It is not clear if you want multiple "panes" or you want it to "rotate." To switch backgrounds, you will have to use JavaScript. To do multiple panes, try "background-image:url(mage1.jpg); background-repeat:none;" and then add on.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you make div by using css?

You can make CSS inside a div but not div in CSS. CSS inside div could be done by : <do=iv style="">.


What is the code to remove ads on MySpace 2.0 profiles?

put this on the CSS code: div#topnav, div#header {display:none;} And it removes the nav. bar with it. But ads will not show up.


What is the html code to make letter blocks?

I believe you mean divs. These can be made using the following tag: <div> Divs can be styled using CSS. You can specify a class or id to your div in the following way: <div class="classname"> and <div id="idname">


What is the HTML code to add a border to a picture?

For example this is the HTML code: <body> <div id="picture"> <img src="images/image.jpg" alt="this is image" /> </div> </body> In CSS: #picture img { border:2px solid #000066; }


What is the difference between the Div and Span tag?

A div is a block element. This means that if you use a div, unless you float objects next to it using CSS, the div will be alone on a line. A span is an inline element. This means that unless you use line breaks next to it or change it to a block element using CSS, the span will be on the same line as whatever is next or before to it in the code. For example: This is a <div>element</div> text is above and below but not beside This is a <span>element</span>, text is before and after on the same line.


How do you get text to stay in the same place using HTML?

Your question isn't the clearest, so I'll guess you want the text to float above the rest of the content. The solution is CSS. This code snippet will embed the CSS style rules in the HTML: <div style="display:block;position:fixed">Your text goes here</div>


What is web container?

depends what code you're talking about. if it's html, a container would be the code that contains content ("bla bla") <html> <head> <title> bla bla </title> </head> <body> </body> </html> in css, it would be whatever div tag you create such as: <div class="container"> bla bla </div>


How can you construct website using div tag?

The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS.


What is a div overlay?

from my limited knowledge a <div> is a tag used to make a "division" in the webpage (like tables but cleaner) the beauty of the <div> is that it doesn't have any visual effects as just <div> so it is perfect to use with css (<div class="name">} the word "class" would be represented in css as . and name would show as .name meaning you can set the height, width, colour, style, font etc.. for content that appears inside that div.


What goes between the quotation marks in a style... attribute?

Yes, anything that goes there needs to be something from CSS. Example: <div style="top: 0; right: 0; position: fixed;"> <p>Some Text Here</p> </div


How do you apply a style to an id in css?

The octothorpe or hash sign precedes the name of the ID attribute: HTML: <div id="sidebar"> CSS: #sidebar { color: red; }


How can you center a div using css without centering the text?

CSSdiv.center {text-align:center;} will center the text.div.center {margin: 0 auto} will center the div without centering the text.HTML