工作,我有CSS列表格式化我的鏈接按鈕,但它只出現在Chrome中工作,但不是IE,任何想法,懸停和一切工作只是沒有鏈接本身CSS與Chrome,但不是IE
感謝提前
CSS
.button {
background-color: #4CAF50;
border-radius: 50%;
width: 170px;
height: 170px;
color: white;
padding: 4px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
position: absolute;
margin-top: 0px;
margin-left: 400px;
background-color: white;
color: white;
border: 4px solid #83b739;
}
.button1:hover {
background-color: #83b739;
color: white;
}
HTML
<button class="button button1"><a href="http://www.google.com">link</a></button>
可能有人請給我如何使用編輯我的代碼示例元件? – nsic
擺脫按鈕並將該類添加到鏈接。 'link'應該讓你接近。 –