<!DOCTYPE html>
<html>
<head>
<title>High specificty selector</title>
<style type='text/css'>
.box {
border: 1px solid blue;
}
div#thisbox.box.description {
border: 1px dotted blue;
}
</style>
</head>
<body>
<div id="thisbox" class="box description">
<div class="padded">the content...</div>
</div>
</body>
</html>