css3實現圓角邊框漸變


<button class="border">112233</button>

  創建button

.border{
	position: relative;
	border: 4px solid transparent;
	border-radius: 16px;
	background: linear-gradient(orange, violet);
	background-clip: padding-box;
	padding: 10px;
	/* just to show box-shadow still works fine */
	box-shadow: 0 3px 9px black, inset 0 0 9px white;
}
.border::after{
	position: absolute;
	top: -4px; bottom: -4px;
	left: -4px; right: -4px;
	background: linear-gradient(red, blue);
	content: '';
	z-index: -1;
	border-radius: 16px;
}

  css3樣式


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM