您需要的是选择Elementor按钮并添加一个简单的自定义CSS。大体上what you need to do is to skew the button with the negative value, and then skew the inner text element with the positive value.
a.elementor-button {
color: #fff;
background: #000;
border: 2px solid #000;
font-weight: 700;
text-align: center;
text-decoration: none;
text-transform: uppercase;
outline: 0;
font-size: 0.8rem;
padding: 14px 35px;
display: inline-block;
transform: skew(-35deg); /* Negative skew for the button */
}
a.elementor-button > .elementor-button-content-wrapper {
display: inline-block;
transform: skew(35deg); /* Positive skew for inner text */
}
您可能还可以使用Elementor设置这些规则的大部分,并仅将自定义CSS用于倾斜。如果您已经使用Elementor设置了其中一些规则,并且需要使用自定义CSS覆盖它们,那么您可能需要使用
!important
或一些更高优先级的选择器。