Border does not show up

后端 未结 5 955
耶瑟儿~
耶瑟儿~ 2021-01-07 23:02

My border is not showing up around my image, I\'m not quite sure what the issue could be. I just need a small black border around the photo. My website is http://www.welovet

相关标签:
5条回答
  • 2021-01-07 23:04

    try this:

    border: 1px solid #F4F1E8;
    box-shadow: 1px 1px 3px #4C4843;
    
    0 讨论(0)
  • 2021-01-07 23:05

    Borders have three main pieces: a width, a style, and a color; the style is required for any of the others to work.

    Try adding the style:

    border-style: solid;
    

    Also, you can specify all these in the same line of css:

    border: thin solid black;
    

    Updated

    As pointed out by Wesley, border-style is the only required one.

    From http://www.w3schools.com/css/css_border.asp :

    None of the border properties will have ANY effect unless the border-style property is set!

    0 讨论(0)
  • 2021-01-07 23:15

    Add a border style property as well, for example border-style: solid;.

    0 讨论(0)
  • 2021-01-07 23:26

    You're missing:

    border-style: solid;
    
    0 讨论(0)
  • 2021-01-07 23:28

    You can put border width/style/color in one row like this:

    Border: 1px solid black;
    
    0 讨论(0)
提交回复
热议问题