Search Results

3
votes

How do I make <li> with block elements sit beside each other?

In your <UL> tag use the css attribute "list-style:none;" and in the <li> tag use the css attribute "display:inline;" you'll have to play around with the paddi …
0
votes

Inherit css properties

CSS will automatically inherit from the parent style. For example, if you say in your body style that all text should be #EEE and your background should be #000 then all text, whether it’s in a div …
1
vote

css z-index question?

add z-index: 1 to your headerR class in the CSS. …
1
vote

In ASP.NET, I just want to position an Adrotator in the right top corner of my webpage.how?

You can float the adrotator above the rest of the text using css. Add your Adrotator to the top of the page (before any other controls) and add the style: float: right; …