首页htmlborder_styleCSS Property Value - 如何border-style: solid dashed dotted double;

CSS Property Value - 如何border-style: solid dashed dotted double;

我们想知道如何border-style: solid dashed dotted double;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.box {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  border-color: red blue green yellow;
  border-style: solid dashed dotted double;
  border-width: 20px 10px 5px 15px;
}
</style>
</head>
<body>
  <div class="box"></div>
</body>
</html>