据我所知, 我只能通过在”自定义CSS”下覆盖它们来禁用CSS属性。当前的CSS边框是
.pewc-column-wrapper .pewc-checkbox-image-wrapper {
border: 4px solid transparent;
}
我想删除border属性并将其替换为单独的top, right, bottom属性。以下不起作用。还有其他想法吗?
.pewc-column-wrapper .pewc-checkbox-image-wrapper {
border-top: 4px solid transparent !important;
border-right: 4px solid transparent !important;
border-bottom: 4px solid transparent !important;
}
#1
请尝试以下。
.pewc-column-wrapper .pewc-checkbox-image-wrapper {
border-top: 4px solid transparent !important;
border-right: 4px solid transparent !important;
border-bottom: 4px solid transparent !important;
border-left: 0px solid transparent !important;
}
或者尝试用填充替换边框。像下面。
.pewc-column-wrapper .pewc-checkbox-image-wrapper {
border: 0px solid transparent;
padding: 1px 1px 1px 0px;
}
#2
border-color:red green blue yellow;
就你而言
border-color:transparent transparent transparent transparent;
评论前必须登录!
注册