在HubSpot中创建登录页面时,我无法覆盖html样式。我想添加
html {
overflow-x: hidden
}
但它一直默认为
html {
overflow: auto
}
我已尝试!important
,将其添加到页首,页脚,自定义html模块等,但我无法覆盖默认的HubSpot样式。
答案 0 :(得分:1)
特异性:如果html标签具有class或id属性,则选择它以覆盖本机属性。
html.page {
overflow-x: hidden;
}
如果你有权访问它,或者将样式内联到html页面。
答案 1 :(得分:0)
请禁用包含样式表。
Primary CSS File : Disable
和
Include Domain Stylesheets : Disable
然后申请
html.no-js { overflow-x:hidden !important; }