gpt4 book ai didi

php - 如何根据浏览器版本给出条件 cellpadding 值?

转载 作者:行者123 更新时间:2023-11-28 11:40:29 25 4
gpt4 key购买 nike

如何根据浏览器版本给出条件cellpadding?例如:

对于 IE7,我想给 cellpadding=200,对于其他浏览器,我想给 100。

我可以使用 PHP 实现它吗?

如果是,如何实现?

<table  class="popup"  id="nameFieldPopup" border="0" cellpadding="100" >

-------------------------------------------- ------------------------------------------------^

我试过了

[if IE] .popup {  
width: 500px;
cellpadding: 100px 0;
}

但它不起作用。提前致谢。

最佳答案

尝试 IE 特定的 css 规则。为了控制 CSS 中的“cellpadding”,您可以简单地为表格单元格使用填充。

table#nameFieldPopup tr td { 
padding: 100px; /* standard */
*padding: 200px; /* IE 7 and below */
}

关于php - 如何根据浏览器版本给出条件 cellpadding 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20697442/

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