Hallo... Ich habe das Problem, dass ich mein Video nicht zentrieren kann!
Hier meine Codes:
Code
<div id="content-video"> <div id="seitentext">
<div id="text">
<h2>Teamspeak-Vortstellung</h2>
<p>Hey Leute!
<br>Ich stelle euch heute den Teamspeak von meinem/unserem Server vor!
<br>Ich hoffe, dass ich dir mit diesem Video ein kleinen Einblick geben konnte.
<br>
<br>Auf unserem Teamspeak, könnt ihr für euern YouTube-Kanal einen eigenen Channel bekommen. Wenn ihr Musik hören <br>wollt, müsst ihr einfach nur in unseren Musik-Channel gehen! Bei Fragen oder Problemen, kann dir unser <br>Support weiterhelfen, der täglich von 16-20 Uhr geöffnet ist.</p></div>
<div id="div-channel-button">
<button type="button" id="zum-video" onclick="location.href='ts3server://simuundquex.de'"><i class="fa fa-plus-square"></i> Zum Video!</button> </div>
</div>
<div id="seitenbild">
<div id="video-div"><iframe width="560" id="video" height="315" src="https://www.youtube.com/embed/U_JOBqMO5Dg?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
</div>
</div>
Alles anzeigen
Code
#zum-video{
background-color: transparent;
border: none;
color: #21b2a6;
padding: 15px 32px;
text-decoration: none;
font-size: 16px;
cursor: pointer;
border: 3px solid #21b2a6;
-o-transition: color .2s ease-out, background .2s ease-in;
-ms-transition: color .2s ease-out, background .2s ease-in;
-moz-transition: color .2s ease-out, background .2s ease-in;
-webkit-transition: color .2s ease-out, background .2s ease-in;
transition:color .2s ease-out, background .2s ease-in;
margin: 0;
border-radius: 10px;
margin-top: 30px;
margin-left: 8px;
float: center;
width: 278px;
}
#zum-video:hover
{
color: white;
background-color: #21b2a6;
border: 3px solid #21b2a6;
}
}
#div-channel-button
{
float: left;
width: 400px;
display: flex;
align-items: left;
justify-content: left;
}
#seitentext #text
{
margin-left: 8px;
padding-right: 8px;
color: black;
font-size: 14px;
float: center;
}
#seitenbild #video
{
margin: 0 auto;
float: center;
display: flex;
align-items: center;
justify-content: center;
}
#seitenbild
{
display: flex;
align-items: center;
justify-content: center;
}
#video-div
{
display: block;
align-items: center;
justify-content: center;
float: right;
}
Alles anzeigen