Simple Styled Box

CSS can style containers using background, padding, and borders.

Preview

Code

<style>
.box{
background:#e0f2fe;
padding:16px;
border-radius:6px;
}
</style>

<div class="box">This box is styled using CSS.</div>

More CSS Introduction Examples (5)