Reputation: 25
As you can see in the image there is a problem and it basically knocks down the image I need it just floats over the top right corner of header.
<header id="header">
<div id="lang">
<a href="index.html">English</a>
</div>
</header>
Upvotes: 0
Views: 47
Reputation: 459
try this
<header id="header">
<div id="lang">
<a href="index.html">English</a>
</div>
</header>
<style>
#header{
position: relative;
}
#lang{
position: absolute;
top: 0;
right: 0;
width: 100px;
}
</style>
Upvotes: 1