Страницы: 1
Почему-то по разному отображается жирный шрифт в таком вот примере (на a.html он более "жирный" чем на b.html):
a.html
<html><head><link href = "styles.css" type = "text/css" rel = "stylesheet"></head> <body bgcolor = "000000"> <table id = "menu"> <tr><td><a href = "a.html">No header</a></td></tr> <tr><td><a href = "b.html">With header</a></td></tr> </table> </body></html>
b.html
<html><head><link href = "styles.css" type = "text/css" rel = "stylesheet"></head> <body bgcolor = "000000"> <div id = "header"></div> <table id = "menu"> <tr><td><a href = "a.html">No header</a></td></tr> <tr><td><a href = "b.html">With header</a></td></tr> </table> </body></html>
styles.css
#menu { position: fixed; top: 10; left: 10; background-color: #000000; } #header { position: fixed; top: 0; left: 0; right: 0; height: 20px; background-color: #000000; } a { color: #ffff00; font-weight: bold; }
Firefox 6.2.0.
В других браузерах и бо
Страницы: 1