1
vote
How to insert line breaks in HTML documents using CSS
Form controls are treated specially by browsers, so a lot of things don't necessarily work as they should. One of these things is generated content - it doesn't work for form controls. Instead, w …
5
votes
1
vote
three column web design with variable sides
Use this technique, and simply specify a fixed width for the centre column.
…
1
vote
CSS : Bad Gray Line to the side of the Navigation Bar on http://perl-begin.org/
The grey line is supposed to be there. The reason why it looks odd is because the very top is hidden by the buffer element. Remove the background-color rule from this ruleset:
…
18
votes
div class vs id
Use id to identify elements that there will only be a single instance of on a page. For instance, if you have a single navigation bar that you are placing in a specific location, use …
1
vote
How can you make a web page send to the printer something different than what’s in the browser window?
Use a print stylesheet.
Edit: Regarding the followup, you can't, in general, add things to a page w …
2
votes
Does the CSS ‘font-size: medium’ set font to .Body font size or to the *browser*’s base font size?
From the CSS 2.1 specification:
The 'medium' value is the user's preferred font size and is …
8
votes
CSS Margin Collapsing
No. When you have two adjacent vertical margins, the greater of the two is used and the other is ignored.
So, for instance, if you have two block-display elements, A, followed by B beneath …
1
vote
Position An HTML Element Relative to its Container Using CSS
Absolute positioning positions an element relative to its nearest positioned ancestor. So put position: relative on the container, then for child elements, top and …
1
vote
CSS: Display differences
There are two main types of drawing context in CSS that can be assigned to elements. One, display: block, creates positionable boxes. The other, display: inline flows th …
2
votes
Where do you put your CSS Margins?
If you want some space around an element, give it a margin. That means, in this case, don't just give the <h1> a bottom margin, but give <p> a top margin. …
2
votes
Is it bad design to use table tags when displaying forms in html?
It's a grey area. Not everything in markup has clearly defined boundaries, and this is one case where you get to use your personal preference and make a judgement call. It doesn't quite fit the i …
1
vote
Background color stretches accross entire width of ul
<a> elements are inline by default. This means that they don't establish their own block, they are just part of the text. You want them to establish their own block, so you sho …
0
votes
Which browsers support page break manipulation using CSS and the page-break-inside element?
I'm trying to use the page-break-inside CSS directive, the class of which is to be attached to a div tag or a table tag (I think this may only work on block elements, in which case i …
0
votes
