HTML Div border not showing

后端 未结 3 1206
一向
一向 2020-12-03 17:55

I\'m trying to add a border to a div element in HTML. Below is my code.

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-03 18:17

    You have to set the rule "border-style" to see the border

    #container-border {
      border-width: 2px;
      border-color: red;
      border-style:solid;
    }
    ...

提交回复
热议问题