Hello!
I want to make a 2 column which has a percent and a pixel width.
Is there any trick to make this without using JavaScript?
Output that I expected is like this
A fixed 50 pixel, and the rest is for the 2nd column.
Added after 24 minutes:
Hmmm, I guess i can use margin...
I want to make a 2 column which has a percent and a pixel width.
Is there any trick to make this without using JavaScript?
Output that I expected is like this
A fixed 50 pixel, and the rest is for the 2nd column.
HTML Code:
<html> <frameset cols="50,*" border="1"> <frame src="frame_a.htm" /> <frame src="frame_b.htm" /> </frameset> </html>
Hmmm, I guess i can use margin...
Comment