Link to home
Start Free TrialLog in
Avatar of ziorrinfotech
ziorrinfotech

asked on

how to give html table minimum width in asp.net

I am designing one web page which contains an HTML table.

what i want to do is some how make the html table to take the full available width if the user views this page on a higher resolution.
and if he views this page on a lower resolution then i want to fix width to a fixed number so that it does not shrink after that.

is it possible to achieve?
Avatar of erikTsomik
erikTsomik
Flag of United States of America image

use percentage rather than px.

So something like this
<table width="50%"
use css, something like:
<table style="min-width: 780px">...
ASKER CERTIFIED SOLUTION
Avatar of jfromanski
jfromanski
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial