I have a problem with CSS grid.
In a Firefox, when the width of the screen is reduced (eg to 600px), some elements on pages that uses CSS Grid do not support word-break
value. They remain on the same line as they were.
I tried to add a display: inline-block
but it didn't fix that.
That's the bug:
* {
box-sizing: border-box;
}
body {
margin: 0 0;
padding: 0 0;
}
.grid {
text-align: center;
align-items: center;
justify-content: center;
width: 100%;
display: grid;
margin-right: auto;
margin-left: auto;
}
.item {
grid-area: one;
display: grid;
}
<div class="grid">
<div class="item">
<p>Some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong line</p>
<p>Some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong line</p>
</div>
</div>
Another example: link
Is there any property I have to or can use to solve this problem?
You need to Wrap your text using CSS. You can check how it works on w3schools here: https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_word-wrap
Example code copied from above page: