文章加密

;

2021年9月5日 星期日

Getting error in CSS with `rgb(0 0 0 / 30%)`

 https://stackoverflow.com/questions/66825515/getting-error-in-css-with-rgb0-0-0-15




As Dan Mulin stated, sass hasn't yet caught up to the new standard so instead of box-shadow: inset 0 0 5px rgb(0 0 0 / 15%) use box-shadow: inset 0 0 5px rgba(0, 0, 0 , 0.15) Regards



/* New Standard for color using rgb (rgba depreacated) */
rgb(0 0 0 / 0%)

/* Old standard for color using rgb and rgba */
rgb(0, 0, 0) 
rgba(0, 0, 0, 0)

沒有留言:

張貼留言