作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图默认打开一个描述 + 按钮,这样我的客户就不必单击 + 打开按钮来查看描述,我希望它默认打开并能够关闭。这是当前代码,我无法将其设置为默认打开。
/* 简短描述 */
#wsite-com-product-short-description {
margin: 30px auto 0;
padding-top: 30px;
border-top: 1px solid #dddddd;
max-height: 20px;
overflow: hidden;
-webkit-transition: max-height .65s ease-in-out;
-moz-transition: max-height .65s ease-in-out;
-o-transition: max-height .65s ease-in-out;
-ms-transition: max-height .65s ease-in-out;
transition: max-height .65s ease-in-out;
}
#wsite-com-product-short-description:before {
content: 'DESCRIPTION +';
display: block;
font-family: "Montserrat";
font-size: .85em;
margin-bottom: 10px;
}
#wsite-com-product-short-description.open {
max-height: 800px;
}
#wsite-com-product-short-description.open:before {
content: 'DESCRIPTION -';
}
最佳答案
在您的自定义 CSS 中包含以下内容。
#wsite-com-product-short-description {
max-height: 800px !important;
}
它通过设置最小高度强制扩展描述。
关于html - 如何在 Weebly 中默认打开 + 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36192077/
我是一名优秀的程序员,十分优秀!