gpt4 book ai didi

html - 重置 css 属性值 ?

转载 作者:太空宇宙 更新时间:2023-11-04 04:10:25 26 4
gpt4 key购买 nike

我有一个页面使用了一个

html 
{
width:100%;
}

然而,当该页面在 Iframe 中时 - 它会导致 x-scroll

enter image description here

但是 - 如果我删除 width 属性(通过 chrome 开发人员工具栏)或设置一个无效值,如 '' - 它变得很好:

enter image description here

问题:

这样做可以吗:(为了重置值)

<head  >
/*The original css file - I dont want to touch it*/
<link href="<%= ResolveUrl("~/Css/style.css") %>" rel="stylesheet" type="text/css" />

<style type="text/css">
html
{
width: '' !important;
}
</style>

附:

请不要使用 js 解决方案。

最佳答案

为了重置该值,您必须为 width 使用默认值:

html
{
width:auto;
}

也没有必要使用 !important 声明。

关于html - 重置 css 属性值 ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20786170/

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