首页htmlborderPage Widget - 如何更改边框默认涂料序列:顶部边框出现在左边框上方

Page Widget - 如何更改边框默认涂料序列:顶部边框出现在左边框上方

我们想知道如何更改边框默认涂料序列:顶部边框出现在左边框上方。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.container {
  height: 100px;
  width: 100px;
  position: relative;
}

.container {
  border-top: 3px solid blue;
  border-left: 0;
  position: relative;
}

.container:before {
  content: "\00a0";
  border-left: 20px solid red;
  height: 100%;
  position: absolute;
  top: -1px;
}
</style>
</head>
<body>
  <div class="container"></div>
</body>
</html>