HTML Div border not showing

后端 未结 3 1207
一向
一向 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:27

    You can use the shortcode for border, which contains color, width AND style (which you are missing right now):

    #container-border {
      border: 2px solid red;
    }
    

提交回复
热议问题