| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Document</title>    <style>        div {            width: 200px;            height: 200px;            background: rgb(255,255,0);            /* opacity: 0; */            /*                 隐藏元素:display:none; 相当于将元素从页面删掉 不占位                 显示元素: display:block;                透明:opacity:0~1[0.5=>.5] 元素隐藏扔占位                 */            /* display: none;            display: block; */        }        div {            width: 300px;            height: 300px;            background: #f00;        }    </style></head><body>    <!--          16进制颜色             rgb颜色         红色 #ff0000 #f00     rgb(255,0,0)        黄色 #ffff00 #ff0     rgb(255,255,0)        蓝色 #0000ff #00f     rgb(0,0,255)        绿色 #00ff00 #0f0     rgb(0,255,0)        黑色 #000000 #000     rgb(0,0,0)        白色 #ffffff #fff     rgb(255,255,255)     -->    <!--         rgba() =>rgb + alpha(透明度0~1[0.5=>.5]<只是颜色透明,标签仍占位>)     -->    <div></div>    111111111111111111111</body></html>
 |