4.6 DOM 操控 class
Last updated
Last updated
var the_block = document.getElementById("the_block");
the_block.style.opacity = 0.2;
the_block.style.backgroundColor = "blue";
the_block.style["background-color"] = "blue";<button type="button" id="btn">按鈕</button>
<div class="img_block"><img src="https://picsum.photos/id/222/200/200"></div>div.img_block{
border: 1px solid red;
width: 100px;
height: 100px;
font-size: 0;
}
div.img_block > img{
width: 100%;
}