Alternativy ke zrušeným elementům a atributům v HTML5 a CSS3
Jak už jistě víte, tak nová specifikace HTML5 a CSS3 zavrhuje některé elementy a atributy, které jste možná byli zvyklí používat. Je potřeba pro ně najít validní náhradu. Ať už v podobě javascriptu nebo css.
<center>
- margin: 0 auto;
- text-align: center;
<font>
- kdysi: <font color=“red“>červeně</font>
- nyní: <span style=“color: red;“>červeně</font>
<s>, <strike>
- alternativou je: <del>
<u>
- text-decoration: underline;
- <span style=“text-decoration: underline;“> podtržený text</span>
target
- kdysi: <a href=“www.pcdays.cz“ target=“_blank“>PCDAYS</a>
- nyní: <a href=“www.pcdays.cz“ onclick=“return ! window.open(this.href);“>PCDAYS</a>
<frame>, <frameset>, <noframes>
- naučit se css
<tt>
- alternativou je tag <pre>
<dir>
- používejte <ul>
<big>
- font-size: 3em;
- <span style=“font-size: 3em;“>velké</span>
<basefont>
- body {
font-family: helvetica, arial, sans-serif;
font-size: 13pt;
color: #000;
}