CSS Display(显示) 与 Visibility(可见性)
优质
小牛编辑
129浏览
2023-12-01
.imgbox { float:left; text-align:center; width:120px; height:135px; border:1px solid gray; margin:4px; padding:0px; } .thumbnail { width:110px; height:90px; margin:3px; } .box { width:110px; padding:0px; } function removeElement() { document.getElementById("imgbox1").style.display="none"; } function changeVisibility() { document.getElementById("imgbox2").style.visibility="hidden"; } function resetElement() { document.getElementById("imgbox1").style.display="block"; document.getElementById("imgbox2").style.visibility="visible"; }
display属性设置一个元素应如何显示,visibility属性指定一个元素应可见还是隐藏。
Box 1更多实例
如何显示元素的内联元素。
这个例子演示了如何显示一个元素的内联元素。
如何显示元素的块元素。
这个例子演示了如何显示一个元素的块元素。
如何使用一个表的collapse属性。
这个例子演示了如何使用表的collapse属性。