Home > Blockchain >  How to change the position of a button?
How to change the position of a button?

Time:05-30

I have a question. I wanted to use a button from codepen.io on my website (this one: https://codepen.io/emared/pen/RYgbaJ/). Everything works with the button but it appears on the end of my website. I want it to be just below my text. Here's my code:

<h3 style="padding-top: 35;">
    Text</h3>

    <div id="wrapper">
        <a href="#" >
          <div >
            <div ></div>
            <div ></div>
            <div ></div>
            <div ></div>
          </div>
          <span>Go!</span>
        </a>
      </div>

And in my CSS-Document I just pasted everything from the codepen page.

Now this is what it looks like: https://ibb.co/G3cmGdQ

Why's there that huge space between "Text" and the button?

Thanks for your help!

  • Related