我不是很擅長網頁設計,我創建了一個使用CSS的按鈕,但我不知道如何讓它在不同的瀏覽器中看起來相同。不能讓我的按鈕看起來在不同的瀏覽器相同
這是我使用的按鈕:
<input type="submit" class="randombutton" value="click here!"/>
這是我創建的CSS:
.randombutton {
border-top: 1px solid #d1d425;
background: #e6eb4c;
background: -webkit-gradient(linear, left top, left bottom, from(#92b019), to(#e6eb4c));
background: -webkit-linear-gradient(top, #92b019, #e6eb4c);
background: -moz-linear-gradient(top, #92b019, #e6eb4c);
background: -ms-linear-gradient(top, #92b019, #e6eb4c);
background: -o-linear-gradient(top, #92b019, #e6eb4c);
padding: 19px 38px;
border-radius: 40px;
color: white;
font-size: 23px;
font-family: Georgia, Serif;
text-decoration: none;
vertical-align: middle;
display: block;
margin-left: auto;
margin-right: auto;
}
.randombutton:hover {
border-top-color: #c0df36;
background: #c0df36;
color: white;
}
.randombutton:active {
border-top-color: #9eb829;
background: #9eb829;
}
這是導致我在3個不同的瀏覽器獲得:
另外我想提一提的是,我不能將按鈕居中屏幕中間。
該按鈕應該看起來像用於Chrome瀏覽器的圖像。我會感謝一些幫助。
是否需要__identical__看起來在每個瀏覽器? [強制性鏈接...](http://dowebsitesneedtolookexactlythesameineverybrowser.com/) – alexmuller
@alexmuller:[來源請求] –
@alexmuller是 – sfrj