<html>
<head>
<style>
img.cardoption {width=20px;}
</style>
</head>
<body>
<img class='cardoption' src='http://s32.postimg.org/9vao2t9kl/scc_std.png'/>
</body>
</html>
在这个简单的HTML片段和随附的CSS中,我有一个类名为“cardoption”的图像。在头部的样式标记中,我试图将此图像的宽度设置为20px。
但是,由于某种原因,图像没有调整大小。有人可以解释一下原因吗?
答案 0 :(得分:1)
使用
img.cardoption {width:20px;}
将=
替换为:
(=
用于HTML属性,:
用于CSS)