CSS Snippets

Add border to something

Tags: borders

Code

<style>
.something {
    border-style: solid; 
    border-width: thin; 
}
</style>

<div class="something">
    <p>
    This is really something, isn't it?
    </p>
</div>

Output

This is really something, isn't it?