TheCryptKeeper
TheCryptKeeper

Reputation: 25

How do I make this CSS overlay without making this happen

enter image description here

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.

HTML

<header id="header">
  <div id="lang">
    <a href="index.html">English</a>
  </div>
</header>

Upvotes: 0

Views: 47

Answers (1)

gkc
gkc

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

Related Questions