本文操作环境:windows10系统、css 3、thinkpad t480电脑。
如果我们要隐藏css中的样式,那么我们可以使用display属性,这个属性的其中一个属性值是none。
一个样式在设置了display:none属性后,元素便会被隐藏,不再占据原来的位置。如果我们要重新显示该元素,只需要设置display:block;即可,这样一来元素便会重新显示出来。
我们来做一个简单的代码测试,有两个按钮,点击开的按钮,div标签的dispaly属性改为 block,显示出来,点击关的按钮,div标签的dispaly属性改为 none,隐藏出来。
具体代码:
Document *{ margin: 0; padding: 0; } body{ background-color: rgba(0, 0, 0, 0.8); } .b1{ width: 150px; height: 30px; margin-top: 100px ; margin-left: 500px; } .b2{ width: 150px; height: 30px; margin-top: 100px ; margin-left: 100px; } div{ /* 隐藏元素 */ display: none; width: 300px; height: 300px; background-color: yellow; border-radius: 50%; margin: 50px auto; } var btn01 = document.querySelector(".b1"); var btn02 =document.querySelector(".b2") var div01 = document.querySelector("div") btn01.addEventListener("click",function(){ div01.style.display = "block"; }) btn02.addEventListener("click",function(){ div01.style.display = "none"; })
运行截图如下:
转载请注明:IT运维空间 » web技术 » css样式怎么隐藏起来 css样式怎么隐藏文字
发表评论