Jump to content

svanigiorgi

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

About svanigiorgi

  • Birthday 06/13/1991

Profile Information

  • Gender
    Male
  • Location
    Georgia

svanigiorgi's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. if u use fixed positionin, try absolute
  2. <div class="center_content">yout text</div> .center_content { width:1008px; margin:auto; } it will necessarily fix it
  3. if you have main div, create another div with class footer (inside main div). give to main div position:relative; after, give to footer div position:absolute; bottom:0; something like this <html> <body> <div style="width:800px; height:800px; position:relative; background:#ccc;"> <div style="width:800px; height:50px; position:absolute; bottom:0; background:#000;">sss</div> </div> </body> </html>
  4. you can use float
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.