Search Results

3
votes
4answers
541 views

When did browsers start supporting multiple classes per tag?

You can use more than one css class in an HTML tag in current web browsers, e.g.: <div class="style1 style2 style3">foo bar</div> This hasn't always wo …
4
votes

CSS: Textbox to Fill Parent Container

You can surround the textbox with a <div> and give that <div> padding: 0 20px. Your problem is that the 100% width does not include any padding or …
2
votes

Why does the CSS min-width attribute not force a div to have the specified minimum width?

I believe the div should be 50 percent of the page, unless, for some reason, the text inside the div makes it larger. min-width does not set a mini …
4
votes

Can’t get CSS Sprite to work..what am I doing wrong?

Define a width and height for <div class="sprite-bg sprite-3">. …
2
votes

FireFox 3 line-height

The computed value of line-height: normal varies between platforms, browsers (and different versions of the same browser, as you state), fonts, and even different sizes of the same fon …
1
vote

Place Radio Button Label Above Using CSS

I think I know what you are looking for, but correct me if I'm missing the mark. I'm assuming you will want the radio buttons centered under their labels. This is a lot easier if you are okay with …
1
vote

Html elements positioned as relative, then moved -15px still take up same physical space

Instead of nudging the <li>s with 'position: relative', you could apply this to each tab (except for the first tab): margin-left: -15px; …
1
vote

CSS UL Menu in IE 6

I don't have a solution to the main issue, but you could change your code formatting to look nicer and still work in IE 6. <div class="nMenu"> <ul> <li> …
0
votes

How do I prevent line breaks between a radio button and its label, while still allowing line breaks within the label itself?

If you don't mind the less-neat markup, you can get what you want by simply eliminating the white space between the <input> and <label> text. & …
3
votes

Positioning Columns With Absolute Positioning Instead of Floats

A big problem with absolutely-positioned containers is placing content on the page below them when you don't know their heights ahead of time. In your example you have defined the heights of your a …
0
votes

Position child div relative to grandparent div

I think you can achieve what you want if you are able to add a "greatgrandparent" and position the child relative to that. Here's a modification to the code you posted: < …
0
votes

Why is my CSS having specificity problems?

You have correctly calculated the specificity for each rule, and the specificity of the second rule is a higher value than the specificity of the first rule. BUT specificity is onl …
1
vote

Stop text wrapping in lists

Using list-style-position:outside; would be more doable if you were using an unordered list, which would always take the same amount of space for the marker. Since you are using an ord …
1
vote

CSS on Email

In addition to the inline css that everyone is recommending, keep in mind that email is often displayed online within another web page, such as through Yahoo! Mail, Hotmail, or Gmail. You can imagi …
0
votes

sIFR 3: IE6 Extra Spacing

You are trying to set the line-height in your sifr-config.js, but I don't think that will have any effect. Try setting the leading instead. It takes a value i …

1 2 next
15 30 50 per page