所有支持的瀏覽器我有這樣的片段:鑑於here編輯here中心文字與CSS
我怎樣才能讓在圓圈中的「X」留在所有支持的瀏覽器(至少Firefox3的+和鉻)
段:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Backbone: Tody</title>
<style>
.delete {
-moz-border-radius: .75em;
-webkit-border-radius: .75em;
width: 1.4em;
height: 1.4em;
text-align: center;
display: inline-block;
line-height: 1.4em;
display:inline-block
vertical-align:middle
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: bold;
color: white;
background-color: gray;
cursor: pointer;
}
.delete:before {
content: "\2715";
/* content: "\00D7"; */
}
.delete:hover {
background-color: red;
}
</style>
</head>
<body>
<div class="delete"></div>
</body>
</html>
它不是已經在中間了嗎? – 2010-11-14 19:40:47
該版本在FF上可以正常使用,但不能在Chrome上使用,必須有一些可以在 – clyfe 2010-11-14 19:50:41