How to set a border for an HTML div tag

前端 未结 9 844
予麋鹿
予麋鹿 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:52

    You can use:

    border-style: solid;
    border-width: thin;
    border-color: #FFFFFF;
    

    You can change these as you see fit, though.

提交回复
热议问题