0

可能是愚蠢的问题,但我正在为此挠头。

为什么这行得通?

<html>
<head>
<body>
<div class="tbs_pagelist_image" style="background-image:url('http://indivisiblemusic.com/userdata/site/tbs_header.jpg');background-repeat:no-repeat;background-size:cover;width: 150px;height: 150px;"></div>
</body>
</html>

但这不起作用?

<html>
<head>
<style>
.image (
width: 100px;
height: 100px;
)
</style>
<body>
<div class="image" style="background-image:url('http://indivisiblemusic.com/userdata/site/tbs_header.jpg');background-repeat:no-repeat;background-size:cover;"></div>
</body>
</html>

我很困惑......非常感谢你帮我解决了我的困惑

4

1 回答 1

1

您正在使用 ( ),这不是正确的语法;你应该使用:

.image {
width: 100px;
height: 100px;
}

http://jsfiddle.net/6mfg5/

于 2014-06-29T00:10:05.710 回答