Lid |
|
Hoi allemaal!
Ik maak een website met een paar profielen van mij en wat vrienden met daarop wat info over onze statistieken in matches van DotA 2. Nu heb ik dus twee iframes, eentje met de laatst gespeelde matches en eentje met de meest gespeelde heroes en die iframes wil ik naast elkaar hebben.
Echter, ze verschijnen onder elkaar. Ik heb de breedte van alles gedoublechecked en het zou gewoon moeten kunnen. Maar toch werkt het niet. Wat doe ik fout of waar heb ik geen erg in?
Dit is mijn code:
<div id = "Site">
<div id = "Fotohouder">
<img src = "Afbeeldingen/Logo.jpg" float: right;/>
</div>
<font color = "#FFFFFF">
<table bordercolor = "#660000" id = "table" style = "color: white; font-size: 20px;">
<tr>
<td>Name:</td>
<td>Thomas Kuijpers</td>
</tr>
<tr>
<td>DotA 2 name:</td>
<td>Jannetje</td>
</tr>
<tr>
<td>Favorite positions:</td>
<td>Safelane, mid</td>
</tr>
<tr>
<td>Best heroes:</td>
<td>Bloodseeker, Pudge, Techies</td>
</tr>
</table>
</font>
<br>
<div id = "DivForIframeMatches">
<iframe src = "https://yasp.co/players/213276981" id = "IframeMatches" scrolling = "no" style = "margin-top: 25px;"></iframe>
</div>
<div id = "DivForIframeHeroes">
<iframe src = "https://yasp.co/players/213276981" id = "IframeMatchesHeroes" scrolling = "no" style = "margin-top: 25px;"></iframe>
</div>
</div>
<img src = "Afbeeldingen/Logo.jpg" float: right;/> <table bordercolor = "#660000" id = "table" style = "color: white; font-size: 20px;"> <td>Favorite positions: </td> <td>Bloodseeker, Pudge, Techies </td> <div id = "DivForIframeMatches"> <iframe src = "https://yasp.co/players/213276981" id = "IframeMatches" scrolling = "no" style = "margin-top: 25px;"></iframe> <div id = "DivForIframeHeroes"> <iframe src = "https://yasp.co/players/213276981" id = "IframeMatchesHeroes" scrolling = "no" style = "margin-top: 25px;"></iframe>
En dit is mijn CSS:
#Menu {
width: 20%;
height: 80%;
float: left;
}
#Site {
width: 80%;
height: 80%;
float: right;
color: white;
}
#Fotohouder {
Float: right;
Margin-right: 100px;
}
#DivForIframeMatches {
width: 810px;
height: 1145px;
overflow: hidden;
position: relative;
}
#IframeMatches {
position: absolute;
top: -390px;
left: -100px;
width: 1400px;
height: 1145px;
}
#DivForIframeHeroes {
width: 200px;
height: 800px;
overflow: hidden;
position: relative;
float: right;
}
#IframeHeroes {
position: absolute;
top: -390px;
left: -1000px;
width: 200px;
height: 1145px;
float: right;
}
#Menu { width: 20%; height: 80%; float: left; } #Site { width: 80%; height: 80%; float: right; color: white; } #Fotohouder { Float: right; Margin-right: 100px; } #DivForIframeMatches { width: 810px; height: 1145px; overflow: hidden; position: relative; } #IframeMatches { position: absolute; top: -390px; left: -100px; width: 1400px; height: 1145px; } #DivForIframeHeroes { width: 200px; height: 800px; overflow: hidden; position: relative; float: right; } #IframeHeroes { position: absolute; top: -390px; left: -1000px; width: 200px; height: 1145px; float: right; }
Thomas.
|