mac html没有overflow,html - Overflow:hidden on Mac iOS and Safari - Stack Overflow

在Safari(包括桌面版和移动版)上,一个仅使用HTML和CSS实现的可折叠标签存在显示问题,内容区域稍微低于标签标题。尽管点击标签的功能正常,但内容区域的溢出在Safari中可见,而在其他浏览器中却工作正常。问题可能与CSS的布局或浏览器特定的样式兼容性有关。
摘要由CSDN通过智能技术生成

I have some HTML and CSS only collapsable tabs. They work perfectly everywhere, other than Mac iOS (Safari, Chrome etc on Mobile) and Safari on desktop. The body content is showing slightly below the tab title. Clicking the tab is working as intended.

AgeES.png

.tab {

width: 100%;

color: white;

overflow: hidden;

border-top: 4px solid white;

}

.tab>input {

position: absolute;

opacity: 0;

z-index: -1;

}

.tab-label {

display: -webkit-box;

display: flex;

-webkit-box-pack: justify;

justify-content: space-between;

padding: 1em;

background: #81C152;

font-weight: bold;

cursor: pointer;

}

.tab-content {

max-height: 0;

padding: 0 1em;

color: #2c3e50;

background: white;

-webkit-transition: all .35s;

transition: all .35s;

}

.tab>input:checked~.tab-content {

max-height: 100vh;

padding: 1em;

}

Tab title

Tab body content

Any ideas why this overflow is visible on Safari but all other browsers are ok?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值