首页htmlborder_topCSS Property Value - 如何border-top: 1px solid #999;

CSS Property Value - 如何border-top: 1px solid #999;

我们想知道如何border-top: 1px solid #999;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
fieldset {
  border: none;
  border-top: 1px solid #999;
}

legend {
  padding: 0 5px;
}
</style>
</head>
<body>
  <fieldset>
    <legend>title</legend>
  </fieldset>
</body>
</html>