Probably stupid question but I'm scratching my head with this.
Why does this work?
<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>
But this does NOT work?
<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>
I am confused... Thanks so much for helping me out clearing my confusion