1
vote
Are liquid layouts still relevant?
Yes - you don't know what resolution the reader is using, or what size screen - or even if accessibility is required/used. As mentioned above, not everybody knows about full page zoom - I know abou …
0
votes
Whats a liquid layout?
Liquid Layouts refer to the design concept of a website. A liquid layout will move in and out when you resize your browser window, due to is having percentages and relative widths in the CSS.
…
0
votes
What’s the best way to organize CSS rules?
I use several techniques:
Group by #ID / Class
Comment major blocks, using an underscore for easy searching (/* IDName /)
Using CSS shorthand helps keep t …
3
votes
What are the quickest and easiest ways to ensure existing web pages display well on mobile platforms?
Opera has an option to view pages as through a mobile device. I've found it useful in the past.
…
4
votes
Typical pitfalls of cross-browser compatibility
CSS - largely sorted out in the modern browsers, but still an issue - particularly as pertains to layout.
Note that this is not critical - but it is a compatibility issue I almost always en …
0
votes
Dynamic resizing / repositioning of divs for multi-column viewing
The only way I can think of is a mixture of dynamic CSS and javascript. Every time a column (feed) is added, use the javascript to rewrite the width (in percentage) of each div.
jQuery wo …
0
votes
How can I send html mails with included CSS with PHPmailer?
I've found the best (read broadest) support for CSS is inline (style=""). Sad, but true.
…
0
votes
5
votes
Centre Content Horizontally in Page
Set your div CSS as follows:
#container {
width: 800px;
margin: 0 auto;
}
…
4
votes
Need to have spacing between end of div and beginning of paragraph
Give the final paragraph an id - #disclaimer, perhaps - then style that to have padding-top.
<p id="disclaimer">Herkimer County Community College does not
discriminate on the …
