加了
Features
Express
Windows VPS
Basic
Windows VPS
Professional
Windows VPS
Advanced
Windows VPS
Remarks on Features
.features {
width: 80%;
margin: 0 auto;
}
.features tbody{
width: 100%;
}
.features th{
background-color: #373d41;
color: #fff;
font-weight: 400;
}
@media screen and (max-width: 768px) {
.features {
width: 100%;
margin: 0;
}
}
Pc上没问题:
手机上就超出了:
表格上面那张图片是设置为宽度100%的,而且底部出现了横向的滚动条。
要怎么才能让表格全部出现在屏幕里,不要滚动条。
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
<meta name="viewport" content="width=device-width, initial-scale=1">
加视口 meta了么?
百分比只是相对父元素,vw才是你想的那种“相对宽度”。