youtube embedded video as iframe with border-radius

前端 未结 2 617
小蘑菇
小蘑菇 2021-01-14 22:54

I got a problem I absolutely don\'t understand. I got a website with YouTube video iframe and want to round the borders via CSS. On http://www.wunschpreisdeal.de/empfehlung/

2条回答
  •  無奈伤痛
    2021-01-14 23:48

    Small but beautiful trick.

    iframe,
    object,
    embed{
        border:5px solid rgba(255,255,255,0);
        -webkit-border-radius: 20px !important; 
        -ms-border-radius: 20px !important; 
        -o-border-radius: 20px !important;  
        border-radius: 20px !important;     
    }
    

    DEMO

提交回复
热议问题