I want to have these four columns be fluid and the textboxes adjust depending on screen size and resolution, right now they over lap on smaller screen
The layout is great on my 22" Screen but boxes start to overlap on smaller screens
Thanks for any help
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="htmlTableDisplay.aspx.vb" Inherits="smartCalc3.htmlTableDisplay" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Listings</title>
<style id ="DivStyle" type="text/css">
.left
{
float:left;
width:24%;
}
</style>
<style id="tdStyle" type=&q ...
Go to the complete details ...