YUI Library CSS Tools 2.4.0の、2.3.1から変更があった箇所の洗い出し。
影響がありそうなのは、テキストボックスのwidthくらいか。
reset.css
- 全体の背景色とフォントカラーを指定する要素が、bodyからhtmlに変わった
#2.3.1
body{
#2.4.0
color:#000;
background:#FFF;
}
html{
color:#000;
background:#FFF;
}
- sup、sub要素のline-height指定が無くなった
#2.3.1
sup,sub{
#2.4.0
line-height:-1px;
vertical-align:text-top;
}
sub{
vertical-align:text-bottom;
}
sup{
vertical-align:text-top;
}
sub{
vertical-align:text-bottom;
}
- legend要素の文字色を追加 (IEのみデフォルトが青色であることへの対処)
legend{
color:#000;
}
- pre要素のmargin-bottomの追加
#2.3.1p,fieldset,table{
#2.4.0
margin-bottom:1em;
}p,fieldset,table,pre{
margin-bottom:1em;
} - テキスト入力系要素の幅指定の追加
input[type=text],input[type=password],textarea{
width:12.25em;
*width:11.9em;
}
fonts.css
- bodyのline-heightの拡大
#2.3.1
body {
#2.4.0
font:13px/1.22 arial,helvetica,clean,sans-serif;
*font-size:small;
*font:x-small;
}
body {
font:13px/1.231 arial,helvetica,clean,sans-serif;
*font-size:small;
*font:x-small;
}
- monospace系要素のline-heightの微調整
#2.3.1
pre,code,kbd,samp,tt{
#2.4.0
font-family:monospace;
*font-size:108%;
line-height:99%;
}
pre,code,kbd,samp,tt{
font-family:monospace;
*font-size:108%;
line-height:100%;
}
grids.css
- 変更無し
0 件のコメント:
コメントを投稿