0
How can i change the width of the colums, if i want them to be same size? is there better way to do it? <table border="2"> <tr> <td width="100px">Red</td> <td width="100px">Blue</td> <td width="100px">Green</td> </tr>
4 odpowiedzi
+ 5
<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
	<table>
	<td style="width:80px;">
	<td> cell one </td> 
	<td> cell two</td></td></table>
	</body>
</html>
0
Yours is the only !
0
Thank you Angelina! I knew there is an easier way! Just didn't know where to put it... thanks!! :) 
0
And now i realized that i can also use td width in CSS sheet... 👍👍



