css問題。CSS漸變邊框:
是否可以添加一個漸變到邊界反映到上面的div?
我可以添加一個純色,似乎無法找到一個漸變的東西。
\t .offerBox {
\t \t width: 360px;
\t \t height: 170px;
\t \t position: relative;
\t \t border-radius: 5px;
\t \t background: linear-gradient(to right, #fcd651 0%,#f9c100 100%);
\t }
\t
\t .offerBox:after {
\t \t top: 100%;
\t \t left: 50%;
\t \t border: solid transparent;
\t \t content: " ";
\t \t height: 0;
\t \t width: 0;
\t \t position: absolute;
\t \t pointer-events: none;
\t \t border-color: rgba(136, 183, 213, 0);
\t \t border-top-color: #f9c100;
\t \t border-width: 30px;
\t \t margin-left: -30px;
}
<div class="offerBox"></div>
謝謝!
如果你需要居中對齊底部,你可以使用變換:旋轉(45deg)轉換(-50%,0);在.offerBox中:根據需要更新top。檢查我的更新回答 – LKG