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.
如何对表格进行 CSS 样式设置
它的宽度最多为页面宽度的 80%,并且,
至少为页面宽度的 50%,并且
是否尽可能宽?
使用min-width和max-width
min-width
max-width
min-width: 50%; max-width: 80%;
我想你想要两个min-width和max-width:
<style type="text/css"> table { min-width: 50%; max-width: 80%; } </style>
这将使表格至少占其容器宽度的 50%。它将增长(如果需要)最大为页面宽度的 80%。