0
why ' * ' is used in <frameset> tag?
2 Antworten
+ 4
For Example:
<FRAMESET cols="1*,250,3*">
...
</FRAMESET>
This creates three columns: the second has a fixed width of 250 pixels. The first frame gets 25% of the remaining space and the third 75%.
+ 1
to specify the remaining column space.