I did make sure that both tables contained the cellspacing and cellpadding - still didn't work. I think I may have found a fix:
table {
width: 0;
table-layout: fixed;
}
<table cellspacing="0" cellpadding="2">
<tr >
<th style="width: 100px" class="vmGridCelHdr">Header...
ClFlava:
Thanks for the reply. I need to keep the table width out out the css structre becuase the code is part of a function that will be called by many tables, all with varying widths. I added the "table-layout: fixed" and it threw off the borders even more. Perpelexing.
Shawn
I just threw this together but if you look at column 4 and 5, the right borders are not lining up with the borders in the header table. In some of my tables, the borders are off quite a bit.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style>
td,tr,table...
This has been driving me nuts all day and I cant figure out what's going on. I have created two tables one is wrapped in a DIV and used as a header. The second is also wrapped in a DIV which allows me to scroll (hence two tables). The second table is butted up against the bottom of the first...
Hello Forum:
This has been driving me nuts all day and I cant figure out what's going on. I have created two tables one is wrapped in a DIV and used as a header. The second is also wrapped in a DIV which allows me to scroll (hence two tables). The second table is butted up against the bottom...
Hello Forum:
I am developing a web application that fires from a link on my website. The link instructs the application to open in a window (window.open()) with all of the tool bars turned off, etc. My question is: is there a way to place this link on a desktop so that it will run without...
Hello Fourm!
I have a question for ya. Is it possible to redefine a function in Javascript? For example:
function myTest(){
this.showAlert = function(){
alert('Show Me!')
}
this.callAlert = function(){
this.showAlert();
}
}
test = new myTest;
test.showAlert = function(){...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.