Archived topic
Container around Paragraph or multiple paragraph together?
3 replies · Started by Mahesh on November 8, 2019
Viewing posts 1–4 of 4
Hello,
I want to know how to put a container around the below sample text
Related Post:
* Post 1
* Post 2
* Post 3
Here is an example of a sample container (the grey one)
https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRkiisl7VPBen90kpA4DCfTuSuQ5D2aN5LNBlqDobHCpZYOft7p
Hi there,
you would need to use the text ( not visual ) editor and add some HTML like so:
<div class="custom-container">
<p>some content</p>
<p>some content</p>
<p>some content</p>
</div>
Then you can style it with CSS:
.custom-container {
background-color: #ddd;
padding: 10px;
box-sizing: border-box;
}
Thanks. It works.
You're welcome
This archived topic is closed to new replies.