How to set a border for an HTML div tag

前端 未结 9 943
予麋鹿
予麋鹿 2021-01-29 22:06

I am trying to define a border around a div tag in HTML. In some browsers the border does not appear.

Here is my HTML code:

9条回答
  •  一整个雨季
    2021-01-29 22:44

    can use

    border-width:2px;
    border-style:solid;
    border-color:black;
    

    or as shorthand

    border: 2px solid black
    

提交回复
热议问题