简体   繁体   中英

CSS border color issue

I am trying to put a red border of 1px and I have a problem. The top and bottom of the border are red, but not the left and right.

If I change the color, pink for example, the issue disappears.

Any idea?

 div.red-border { border: solid 1px red; } 
  <div class="red-border"> <p>Hi!</p> <p> I'm trying to put a red border</p> </div> 

Checking Firefox Quantum your border works, and you are using the shorthand for border styling, but in a different order. I think this order is better, so does the MDN site covering the CSS spec , and more common:

1px solid red

 div.red-border { border: 1px solid red; } 
 <div class="red-border"> <p>Hi!</p> <p> I'm trying to put a red border</p> </div> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM