1
vote
When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?
Sean McMains, <cite> is by no means new. It dates back to 1993.
charlesroper, if you are …
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 …
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:
…
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 …
1
vote
1
vote
Is “>” (U+003E GREATER-THAN SIGN) allowed inside an html-element attribute value?
I believe that's valid, and the W3C validator agrees, but the authoritative source for this information is the ISO 8879:1986 standard, which costs ~150EUR/210USD. Regardless, it is not wrong to en …
1
vote
Offline lorem ipsum generator
Django includes the {% lorem %} tag as part of the contrib addons. It sh …
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 …
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 …
8
votes
What’s the best way to introduce non-majors to HTML / programming?
HTML and JavaScript would definitely not be my approach. Markup and programming are two very different things. Throwing JavaScript into the mix goes some way to deal with that, but it al …
5
votes
opening links in the same window or in a new (tab)
If you prefer closing a tab/window over hitting the back button, then by all means, click links with your middle mouse button. But please don't force your surfing preferences on others. Tabs don' …
18
votes
HTML: What’s the effect of adding ‘return false’ to an onclick event ?
The return value of an event handler determines whether or not the default browser behaviour should take place as well. In the case of clicking on links, this would be following the link, but the …
0
votes
Accessing created DOM elements
var input1 = $( 'input[name="lp_name_1"]').clone(true);
The code you have posted does not indicate any element with that name attribute. Immediately before thi …
6
votes
Why is there a gap between my image and its containing box?
Inline elements are vertically aligned to the baseline, not the very bottom of the containing box. This is because text needs a small amount of space underneath for descenders - the tails on lette …
