首页htmlborderCSS Property Value - 如何border: 1px solid blue;

CSS Property Value - 如何border: 1px solid blue;

我们想知道如何border: 1px solid blue;

<!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>