How to set a border for an HTML div tag

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

    You need to set more fields then just border-width. The style basically puts the border on the page. Width controls the thickness, and color tells it what color to make the border.

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

提交回复
热议问题