[カテゴリー]
[FAQキーワード検索]
※スペースで区切るとand検索になります。
IE7の印刷CSSの設定で左エリアをhiddenさせた時にメインエリアをwidth: 100%で表示させる方法を教えてください。 |
2010年7月27日 |
SITE PUBLIS2のデザイン設定で左エリアを210pxとした場合、標準出力されるCSSのクラス名「areaWrapper2」にleft-margin: 210pxが設定されるので、hiddenさせた後も210px開きます。
以下のようにmargin:auto;を指定することで、解消されます。
@media print {
body {
_zoom: 0.68;
_width: 100%;
}
#leftArea {
display: none;
}
*:first-chilld+html #areaWrapper2 {
padding: auto;
margin: auto;
width: auto;
}
}
以下のようにmargin:auto;を指定することで、解消されます。
@media print {
body {
_zoom: 0.68;
_width: 100%;
}
#leftArea {
display: none;
}
*:first-chilld+html #areaWrapper2 {
padding: auto;
margin: auto;
width: auto;
}
}
このFAQの作成部署
部署名 | 開発部 | 担当名 | 田中 |
---|