>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Проблемы с сайтами http://forum.mozilla-russia.org/viewforum.php?id=24 >Проблема с отображением текста http://forum.mozilla-russia.org/viewtopic.php?id=51482 |
BaHo > 16-09-2011 17:27:05 |
Почему-то по разному отображается жирный шрифт в таком вот примере (на a.html он более "жирный" чем на b.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. Может кто подскажет в чем может быть причина? |
vladmir > 17-09-2011 18:27:30 |
Угу, в SeaMonkey 2.3.3 тот же эффект. У вас там в одном случае один слой поверх другого идёт, а в другом один слой только. |