<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello!</title>
<style type="text/css">
.class1{
border:10px solid #000000;
padding:5px;
border-radius:12px;
opacity: 0.1;
}
.class2{
border:10px solid #000000;
padding:5px;
border-radius:12px;
opacity: 100px !important;
}
</style>
</head>
<body>
<div class="class1">
nghi
<div class="class2">
nghi2
</div>
</body>
</html>
在html文件中。我有2個div。我只想要opacity class1而不是opacity div 2.我對div2使用了重要的屬性,但它不起作用。請幫我把它歸功於不透明度在CSS中只有div
我真的不明白你的問題,但'class2'有一個錯誤,它應該是'opacity:100'而不是'opacity:100px'。也許這就是整個問題。 – Nessuno