My photo has 370px*370px
by default. And I want my border, padding were included in these dimensions.
I try to achieve this effect with box-sizing: border-box
. But I can't. Why?
* {
margin: 0;
padding: 0;
}
img {
box-sizing: border-box;
border: 3px solid #000;
padding: 10px;
}
<img src="https://i.postimg.cc/rp2vtv6m/Layer-6-1.png" alt="">