我创建了一个简单的 html 源代码,并对其应用了一个小的 CSS 样式表:
html {
width: 100%;
}
body {
font-family: Calibri, Tahoma, Geneva, sans-serif;
padding: 20px;
}
pre {
padding: 0;
margin: 0 auto;
border: 1px solid #888;
font-family: Menlo,Monaco,Consolas,monospace;
color: #000;
width: 80%;
overflow: auto;
}
pre li { white-space: pre; }
ol { margin-top: 0; margin-bottom: 0; /* IE indents via margin-left */
color: #979797; background: #E3E3E3; }
.li1 { background: #F5F5F5 }
.li2 { background: #eee }
我在预先格式化的标签中有一个有序列表。每个其他列表元素要么被赋予类属性,要么被赋予li1
(li2
其目的是交替颜色)。列表元素需要 ,white-space: pre
因为文本节点前后的空格很重要。这pre
是包含元素的 80%(最终是窗口宽度的 80%)。在 x 维度溢出的情况下,我想要滚动。
我在上面的 CSS 中做了所有这些,它几乎可以工作。我遇到的问题是列表元素的背景颜色不随内容扩展。它们似乎被限制为pre
和/或 ol的原始宽度,element
如下图所示,我尽可能向右滚动:
我对 CSS 进行了一段时间的修改,但我无法确定此问题的根本原因或修复方法。求这方面的建议,谢谢。
该问题的完整来源如下,注意:对于以下代码的潜在编辑者,该pre
元素旨在位于一行上,因为它是预先格式化的文本,否则对其进行格式化会改变事情。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test Site</title>
<style type="text/css">
html {
width: 100%;
}
body {
font-family: Calibri, Tahoma, Geneva, sans-serif;
padding: 20px;
}
pre {
padding: 0;
margin: 0 auto;
border: 1px solid #888;
font-family: Menlo,Monaco,Consolas,monospace;
color: #000;
width: 80%;
overflow: auto;
}
pre li { white-space: pre; }
ol { margin-top: 0; margin-bottom: 0; /* IE indents via margin-left */
color: #979797; background: #E3E3E3; }
.li1 { background: #F5F5F5 }
.li2 { background: #eee }
</style>
</head>
<body>
<pre class="php"><ol><li class="li1">pre a { text-decoration: none }</li><li class="li2">pre a:hover { background: #C8C8C8 }</li><li class="li1">pre li { white-space: pre; }</li><li class="li2"> </li><li class="li1">.php ol { margin-top: 0; margin-bottom: 0; /* IE indents via margin-left */</li><li class="li2"> color: #979797; background: #E3E3E3; }</li><li class="li1"> </li><li class="li2"> </li><li class="li1"> </li><li class="li2">.php .li1 { background: #F5F5F5 }</li><li class="li1">.php .li2 { background: #eee }</li><li class="li2"> </li><li class="li1"> </li><li class="li2">.php .st0 { color: #C0C } /* string content */</li><li class="li1">.php .st_h { color: #F0C } /* string content single quoted */</li><li class="li2">.php .sy0 { color: #000 } /* semi-colon, operators */ </li><li class="li1">.php .br0 { color: #000 } /* parens */</li><li class="li2">.php .kw2 { color: #00F } /* php tags */</li><li class="li1">.php .sy1 { color: #00F } /* php tags */</li><li class="li2">.php .nu0 { color: #F00 } /* numbers */</li><li class="li1">.php .kw3 { color: #096 } /* core language functions */</li><li class="li2">.php .re0 { color: #09F; font-weight: bold; } /* variables */</li><li class="li1">.php .kw1 { color: #069; font-weight: bold; } /* control statements? */</li><li class="li2">.php .kw4 { color: #069; font-weight: bold; } /* bool? */</li><li class="li1">.php .co1 { color: #FF8400 } /* Forward slash comments */</li></ol></pre>
</body>
</html>