CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: 105%???

  1. #1
    Join Date
    Sep 2003
    Location
    Argentina....
    Posts
    118

    Angry 105%???

    Hi everybody....
    I'm creating a COMPLEX asp.net page, but I have a SIMPLE problem... when i put a HTML table and fix it on the page setting the Table's width=height=100%, it don't use ALL the space, there are a few millimeters on all the borders. If i put the 105% (ie.), it works perfect in my pc, but when i change the monitor resolution it makes me hate html again.

    Thanks...
    Diego
    My history: QB->VB->TC++->VB->VC++->VC#

  2. #2
    Join Date
    Aug 2004
    Posts
    191

    Re: 105%???

    Did you set the page margins to 0? VS.NET defaults them to something like 10px I think.

  3. #3
    Join Date
    Sep 2003
    Location
    Argentina....
    Posts
    118

    Unhappy Re: 105%???

    Thanks... thats a good idea, but when i go to the page properties the margins appears as disabled... any idea?
    My history: QB->VB->TC++->VB->VC++->VC#

  4. #4
    Join Date
    Sep 2003
    Location
    Argentina....
    Posts
    118

    Smile Re: 105%???

    Thanks used a css...

    Code:
    body
    {
          margin: 0px 0px 0px 0px;
    }
    My history: QB->VB->TC++->VB->VC++->VC#

  5. #5
    Join Date
    Aug 2004
    Posts
    191

    Re: 105%???

    np, glad to help.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured