Removing black borders 4:3 on youtube thumbnails

后端 未结 7 749
暗喜
暗喜 2020-12-01 05:20

E.g. I have a link

http://img.youtube.com/vi/aOPGepdbfpo/0.jpg

for a youtube video thumbnail:

7条回答
  •  眼角桃花
    2020-12-01 05:43

    I'm not an expert, i was looking for a solution to remove the black bars of youtube video thumbnails, found a few solutions but didn't worked for me. Started experimenting with the solutions i found and came up with this.

    https://jsfiddle.net/1fL2ubwy/
    

    .row, .col, [class*="col-"] {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .row {
      background: #f8f9fa;
      margin-top: 20px;
    }
    
    .col {
      border: solid 1px #6c757d;
      padding: 10px;
    }
    .yt-thumb {
        width: 100%;
        height: 74%;
        overflow: hidden;
    }
    .yt-thumb > img {
        margin: -10% 0;
    }
    
    
    
    
    

提交回复
热议问题