天天看點

HTML之 iframe 内聯架構

​​HTML <iframe> 标簽​​​ ​​https://www.w3school.com.cn/tags/tag_iframe.asp​​
HTML之 iframe 内聯架構

上圖示紅部分為常用屬性。

實戰問題:為什麼明明設定了 scrolling="yes" ,但是滾動條卻沒顯示?

<style>
    #iframe_1,
    #iframe_2 {
        background: red;
        width: 700px;
        height: 600px;
        /* visible 預設值。内容不會被修剪,會呈現在元素框之外 */
        /* hidden scroll auto inherit */
        /* overflow: hidden; */
        border: 10px solid blue;
    }
</style>

<body>
    <iframe id="iframe_1" src="http://www.weather.com.cn/radar/"> </iframe>
    <iframe id="iframe_2" scrolling="yes" src="http://news.baidu.com/"> </iframe>
</body>      
HTML之 iframe 内聯架構