简体   繁体   中英

How to put website name & logo in html football live video iframe?

Hello Sir & Madam

I would like to know how to insert the website name & logo in the video iframe of football live streaming just like other football live website I want to put in web name or logo like pic; , please someone explain to me.

Thank You

Hello Sir & Madam

I would like to know how to insert the website name & logo in the video iframe of football live streaming just like other football live website I want to put in web name or logo like pic; , please someone explain to me.

Thank You

below code may be helpful,

HTML

<div class="container">
    <iframe src="SOME_URL"></iframe>
    <div class="logo">
        <!-- YOUR LOGO GOES HERE -->
    </div>
</div>

CSS

.container {
    position: relative;
    // OTHER STYLES GOES BELOW HERE
}

.logo {
    position: absolute;
    width: 100%;
    bottom: 20px; //may be according to your design
    // YOU CAN ALIGN CHILDREN LEFT RIGHT OR CENTER WITH OTHER FLEX STYLES  
}

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