Rooではデフォルトの横幅が800pxになっていますが、表示項目数が多い場合や文字数が多い場合は、もっと横幅を広げたいと思うときがあります。そういう場合は standard.c
1 #wrapper { 2 width:800px; 3 min-width: 800px; 4 max-width: 800px; 5 margin-right: auto; 6 margin-lef t: auto; 7 8 /* fix max-width incompatib ility in IE6 */ 9 width:expressio n(document.b ody.client Width > 800? "800px": "auto" ); 10 11 overflow:hidden; 12 display:block; 13 }
上記で800となっているところを例えば900に変更することで、横幅を900pxに変更できます。
posted by
akanuma
on Sat 14 Jan 2012
at 09:48