首页htmlborderPage Widget - 如何将css边框设置为仅一侧

Page Widget - 如何将css边框设置为仅一侧

我们想知道如何将css边框设置为仅一侧。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  border-left: solid red 3px;
  border-right: solid pink 4px;
  border-top: solid blue 4px;
  border-bottom: solid green 4px;
  background: grey;
  width: 100px;
  height: 50px
}
</style>
</head>
<body>
  <div>sd</div>
</body>
</html>