Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Does anyone know how to do this in either HTML or CSS? Or is it done somehow else?

If you look at the current page you are on, the yahoo answer page it extends fully to the top and the bottom and no blue background is shown. How do you do that?

4 Answers

Relevance
  • Anonymous
    1 decade ago
    Favorite Answer

    Choosing Dimensions for Your Web Page Layout

    http://www.elated.com/articles/choosing-dimensions...

    How to create flexible sites quickly using standards like CSS and XHTML: http://www.ibm.com/developerworks/web/library/wa-r...

    In Search of the Holy Grail: http://www.alistapart.com/articles/holygrail/

    Ron

  • 1 decade ago

    Using html

    <body topmargin="0" bottommargin="0">

    Using CSS:

    body{

    margin-top:0px;

    margin-bottom:0px;

    }

  • 1 decade ago

    By default your browser will apply margin/padding to 'body' and 'div' elements. In your css you can add:

    body, div {margin: 0; padding: 0}

    You could also include images, paragraphs, or any other elements you want to "reset"

  • Nik
    Lv 7
    1 decade ago

    it uses div tags to do so not tables tables create an automatic border it may also use css to position it e.g.

    main.div

    {

    top:0px;

    left:300px;

    bottom:0px;

    right:300px;

    }

Still have questions? Get your answers by asking now.