If We are using table for to show tabular data and if we would give width and height to <table> then will it load quickly? will page loading speed improved of table?
What is the difference between "Wordpress Theme" and Wordpress Theme Frameworks? In terms of technicalities, Custom theme making workflow, File and folder structure, Anatomy.
If in content is too small in pages then it look odd . to show some space to make looks good which method would be better.
min-height to #main-content or sticky footer, which is preferred idea?
Is it good to add line-height in body{line-height:1.5} or it would be better if i add separately for tag by tag like p{ line height:1em} etc.
Edit:
body {line-height:in em} create problem with if we put image with float inside
Edit: 24 April 2010:
If i have to add different line heights to elements
like
p { 1.4}
h1 {1.6}
h2 { 1.2}
ul li { 1.1}
then shouldn't i use line height in body { 1.4}
if body { 1.4} and h1 {1.6} then what would be line height for h1?
How many percentage of desktop users?
How many percentage of mobile, ipad, iphone users?
and is there any other devices to access website which do not support JavaScript?
Is JavaScript also a problem for screen reader users?
Who will take benefit if we make things without JavaScript or we give non-JavaScript version?
Who will take benefit of graceful degradation? Desktop users, mobile users, screen reader users?
Is it worth to give time for graceful degradation?
Is WCAG 2.0 do not prefer to use Javascript?
Why anyone will like to surf net without JavaScript?
what are cons to use relative values em and % for fonts, What is rounding problem? and how to avoid/solve rounding problem. Is there any calculator?
How to use relative values as easy as we use px
What are pros and cons to define font-size for body?
what if somewhere i will need font smaller and bigger than body?
will i get body font size (12px) + needed font size for <p> (10px) = 22
Should we always keep same value for body font size which we want to use content paragraph?
How to explain CSS Float in general language (not Programming) ? Is there any real life example to take a example to explain CSS Float?
Is there any Slideshow in very simple way to explain float?
What is Logically correct and W3C valid way to clear float?
zoom:1 is not valid by W3C and IE8 don't have hash layout problem
overflow:hidden and overflow:hidden
were not made to do this,as the spec
intended overflow to be used
<div class="clear"/> is not
semantically correct and i don't want to add extra markup.
clearfix hack generates content that
really hasn’t any semantic value.
I've asked many questions and read many articles on this issue but haven't find best way.
What is the difference between "Wordpress Theme" and Wordpress Theme Frameworks? In terms of technicalities, Custom theme making workflow, File and folder structure, Anatomy.
Wordpress default theme Vs Wordpress theme's framework's Child theme
Is there any good tutorials to convert HTML+ CSS to wordpress? not PSD 2 HTML? I mean if
HTML CSS is available wejust need to convert a XHTML CSS template to installable Wordpress 3.0 Theme? I'm not talking about PSD 2 HTML.
For example this is free CSS template http://www.freecsstemplates.org/preview/regeneracy/ I just want to download it and convert this css template into Wordpress 3.0 installable theme.
Why same website looks different in different browser.
Differently styled HTML elements in all browser's default css is the only factor for the different looks in different browser of website?
Is there any other factors related to cross browser compatibility?
What is the rule behind to divide this html in var tip?
var tip = "<p class='adobe-reader-download'>Most computers
will open PDF documents automatically, but you may need to download
<a title='Link to Adobe website-opens in a new window'";
tip += " href='http://www.adobe.com/products/acrobat/readstep2.html'
target='_blank'>Adobe Reader</a>.
</p>";
why this cannot be
var tip = "<p class='adobe-reader-download'>Most computers will
open PDF documents automatically, but you may need to download
<a title='Link to Adobe website-opens in a new window'
href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'>
Adobe Reader</a>.</p>";
and how to divide in HTML is longer than this?
In IE 7 background shift to 1 px top to but in FF it's ok?
background: url(girl.jpg) top left repeat-x;
position: relative;
top: 0px;color: #666;
border-bottom-color: white;
How to give style to <thead> only, not to <th>?
Why border of th not showing
http://jsfiddle.net/r8mA7/
<table>
<thead style="border-top:10px solid red; background:yellow">
<tr><th style="border-top:10px solid green">Name</th></tr>
</thead>
<tbody>
<tr><td>Bob</td></tr>
<tr><td>Tom</td></tr>
</tbody>
</table>
Are all fonts size would be same with same value?
for example p { font-family:Arial; font-size:12px}
if i change Arial to any other font then will all fonts will render in same size as Arial render in 12px, in all browser?
Background working fine on FF and IE 7 but not on IE6
#middle { background: url(main-bg.jpg) repeat-y; overflow: hidden;
margin-left: 1px; margin-top: 38px }
When to use <strong> and when to use <b> or other ways to give look of bold? strong has semantic value ( and useful for screen reader while b is presentation (and even valid in HTML 5).
my question is not what is the difference between strong and b.
The question is when to use semantic tag and when to use just to make text bold
Should I always use <strong> if client's content files (MS word files) has some words bold in content paragraphs?
How can we know when client want to give emphasis to text and when he just want to make text bold for presentation/aesthetic purpose?
If it's client job to tell us, then how to explain this scenario to client to give us clear info on "when he just want to make text bold for presentation/aesthetic purpose" ?
Why border of tfoot tr:first-child not showing in IE. I'm checking in IE7.
font-weight:bold; background:yellow is showing in IE but border not
table {
border-collapse: collapse;
border-spacing: 0;
}
table tfoot tr:first-child
{font-weight:bold;
background:yellow;
border-top:2px solid red;
border-bottom:2px solid red;}
What are cons if we do not care about validation of XHTML and CSS?
In terms of development time,
Code debugging,
Cross browser compatibility,
website maintainability,
Future changes in website,
SEO ranking
Accessibility (Does validity increase
accessibility)
I have to explain a client that Code validation is not just Fashion, it is beneficial for his site.