<body> <div class="container“> ... </body> |
然後在 CSS 部份加入:
#container { min-width: 600px; width:expression(document.body.clientWidth < 600? "600px": "auto" ); } |
而筆者想到在 xuite css 中,有一行指令可以讓 xuite blog 在 ie 中也有最小寬度的限制效果,所以我就將那行敘述用到了 blogger html/css 之中,結果真的可以達到我要的效果,而且只要在 html/css 中加入一行敘述就可以了,真的是很簡捷有效。
以下為我在 blogger html/css 中「最小寬度」的設定方式:
body { ... min-width: 760px; behavior: expression(this.style.width=(document.documentElement.offsetWidth<760)?"760px":"100%"); } |
沒有留言:
張貼留言