What are cons to use transitional doctype with presentational or deprecated element, if our code is valid in W3C validation with transitional doctype?
Will we have to rewrite/edit site's code again after few years for the site's in which we are using XHTML/HTML transtional doctype.?
This is not semantic but using less character, and it wold be good in to use web based WYSIWYG editor in CMS
small {font-size:9px}
<p>hello <small>how</small> are you?</p>
but this using more character
.small-text {font-size:9px}
<p>hello <span class="small-text">how</span> are you?</p>
both will be validated and both has support in all current browsers. but what will be the best for future and why?