Commit 51f293ba authored by Mark Otto's avatar Mark Otto

Fixes #5662: white-space: nowrap; on code element

parent 075e320a
...@@ -963,6 +963,7 @@ pre { ...@@ -963,6 +963,7 @@ pre {
code { code {
padding: 2px 4px; padding: 2px 4px;
color: #d14; color: #d14;
white-space: nowrap;
background-color: #f7f7f9; background-color: #f7f7f9;
border: 1px solid #e1e1e8; border: 1px solid #e1e1e8;
} }
......
...@@ -19,6 +19,7 @@ code { ...@@ -19,6 +19,7 @@ code {
color: #d14; color: #d14;
background-color: #f7f7f9; background-color: #f7f7f9;
border: 1px solid #e1e1e8; border: 1px solid #e1e1e8;
white-space: nowrap;
} }
// Blocks of code // Blocks of code
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment