gpt4 book ai didi

html - 如何在 Bootstrap 中隐藏 bgcolor for mobile?

转载 作者:行者123 更新时间:2023-11-28 04:33:12 24 4
gpt4 key购买 nike

所以我的大屏幕上一切正常。如何为移动设备隐藏 bgcolor

我有

<td bgcolor="##f5f5f5">

如何在不隐藏整行的情况下放置 hidden-xs

最佳答案

将 ID 或类添加到您的 <table> <td>并使用设备的媒体查询定位类或 Id,不要使用内联 css 进行响应式设计。

<td id="example_id" bgcolor="#f5f5f5">


@media only screen and (max-width: 480px) {
td#example_id {
background-color: #f00 !important;
}
}

关于html - 如何在 Bootstrap 中隐藏 bgcolor for mobile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27192884/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com