首页 > 其他分享 >css: button

css: button

时间:2022-12-07 17:55:49浏览次数:34  
标签:f3e8e6 linear gradient button background 0% top css

 

input[type="button"],
input[type="submit"],
	button,
	.button {
	border-radius: 15px 15px 15px 15px;
	background: #f3e8e6; /* Old browsers */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3e8e6), color-stop(100%,#f3e8e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f3e8e6 0%,#f3e8e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f3e8e6 0%,#f3e8e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f3e8e6 0%,#f3e8e6 100%); /* IE10+ */
	background: linear-gradient(top,  #f3e8e6 0%,#f3e8e6 100%); /* W3C */
    color: #ffffff;
	text-shadow: 1px 1px 1px rgba(255,255,255, .22);
}

  

标签:f3e8e6,linear,gradient,button,background,0%,top,css
From: https://www.cnblogs.com/geovindu/p/16963843.html

相关文章