Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类似于标签的元素(因为它有自动换行:pre;)来在网站上显示代码。唯一的问题是选项卡尺寸太大,导致元素经常水平滚动,因为它是固定宽度的。
是否可以更改标签大小?
您可以用空格替换制表符。然后你可以精确控制缩进的大小。
我们需要更清楚地了解您的问题,但是您是否正在寻找text-indentcss 属性?您可以设置缩进量,例如:
text-indent
<style type="text/css"> p { text-indent: 40px; } </style>