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">.
…
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;
…
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
Dead Center for JavaScript Output
How about using text-align: center?:
#content
{
font-family: Helvetica, Geneva, Arial, sans-serif;
font-color: black;
background-color: white;
text-align: center;
}
…
1
vote
Intermixing HTML form and table
1) When you create a page using "legal HTML," you can have an expectation that what works in today's browsers will work in tomorrow's browsers, or in some other user agents that you might not have …
5
votes
Why does code render in code block?
I do not think [those tags] mean what you think they mean.
<pre> allows you to preserve white space and line feeds. <code> allows you to semantically i …
0
votes
Empty HTML tags
I've made validation part of my workflow because it helps me catch mistakes early. And while I don't consider empty elements to be a problem, it negates some of the value of using a validator if I …
0
votes
Usage of the HTML Table “summary” attribute
I use the summary attribute to describe the structure of the table and the relationships of the rows and columns to each other. It augments the <tbody> and …
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 …
0
votes
When highlighting html on a page, it colors the words blue, but doesn’t give it blue background?
That is exactly the behavior of selecting an image.
CSS cannot directly influence this; it's a function of the browser.
EDIT: You've added that the background is s …
1
vote
Why is my DIV smaller than its contents?
The absolute positioning is the reason the images are over the text (since nothing is giving the #slideshow <div> any height), but your system needs the images to be absolutely p …
9
votes
How do I stop search engines indexing a maintenance page
You should send a 503 Service Unavailable HTTP status code, and not a 404. Use this in conjunction with a Retry-After …
