I got a tag
inside:
#in .css file
div.box {
width: 50px;
height: 30px;
}
#in .html file
<div class="box">
<p>Here</p>
</div>
and looks like this:
------------
| |
| Here |
| |
------------
but I want to put <p>below <div>, for example:
------------
| |
| |
| Here |
------------
How?
source
share