Hello I have a problem I am making comment form and everything works just fine, but I have a problem with comments, especially for mobile devices because it is goes off the container and it makes page scrollable on left and right.
How to break text to next line in text Area? I used word wrap and it fixes it but only for bigger devices.
HTML
<div class="comment-section">
{% for comment in comments %}
<div class="comment">
<div><img class="comment-user-picture" src="{{user.profile.user_image.url}}"></div>
<p class="comment-user">{{user.username}}</p>
<p class="user-comment-content">{{comment.content}}</p>
</div>
{% endfor %}
</div>
CSS
.user-comment-content{
grid-row: 2/3;
grid-column: 2/3;
margin: -1.2rem 1rem 1rem 0rem;
word-wrap: break-word;
font-size: 1.4rem;
}