I'm new to CSS and I was wondering if there was a sollution to get my text inside the framework on a mobile device.
This is my .css:
.post-details .post-entry > p {
margin-top: 20px;
margin-bottom: 0;
font-size: 1.5rem;
}
I'm new to CSS and I was wondering if there was a sollution to get my text inside the framework on a mobile device.
This is my .css:
.post-details .post-entry > p {
margin-top: 20px;
margin-bottom: 0;
font-size: 1.5rem;
}
Have you tried using the Word Wrap CSS property?
.post-details .post-entry > p {
margin-top: 20px;
margin-bottom: 0;
font-size: 1.5rem;
word-wrap: break-word;
}