CSS Border Width

Use border-width to control the thickness of borders.

Preview

Code

<style>
.box{
border-style:solid;
border-width:5px;
border-color:#16a34a;
padding:16px;
}
</style>

<div class="box">Border width example</div>

More CSS Borders Examples (7)