<section>
<p>This is a paragraph - it is a block element. But you can build a <span class="inline-block span-style">inline-block element inside it.</span> to which you can set the height/width. It will not move to a new line, but stay inside the paragraph.</p>
</section>
body {
width: 500px;
font: 16px/1.5 monospace;
}
.span-style {
padding: 10px;
color: #fff;
background: green;
}
.inline-block {
display: inline-block;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.