Archived
1
0

block-inline --> inline-block & cater to firefox

19:03:41.183 Error in parsing value for 'display'.  Declaration dropped.1 site.css:44:13
19:03:41.183 Unknown property 'overflow-wrap'.  Declaration dropped.1 site.css:45:14
"You might as well use word-wrap as well because as the spec says, they are literally just alternate names for each other. Some browsers support one and not the other. Firefox (tested v43) only supports word-wrap"
—https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
This commit is contained in:
4cdn 2015-11-07 19:09:34 -05:00
parent e50d145bbe
commit 3c8fa13ffe

View File

@ -41,8 +41,9 @@ pre {
white-space: pre-wrap;
background: #3f3f3f;
color: #d17600;
display: block-inline;
display: inline-block;
overflow-wrap: break-word;
word-wrap: break-word;
}
td {
@ -313,4 +314,4 @@ textarea#reply-text {
hr {
padding-bottom: 20px;
}
}