The clip="value,value,value,value" "parameters determine the clipping rectangle of the layer, that is, it defines the boundaries of the visible area of the layer.
The value is a set of 4 numbers, indicating in order, the left value, the top value, the right value and the bottom value. The left and right values are specified as pixels in from the left, while the top and bottom values are specified as pixels down from the origin of the layer.
Each of the 4 values are numbers of pixels. You can also specify the value as a set of 2 numbers, in which case the left and top values default to 0. For example, clip="10,20" is equivalent to clip="0,0,10,20".
The clip= attribute is optional. If the clip= attribute is omitted, the clipping rectangle of a layer is the same size as the HTML conent of the layer. Be default, a layer expands to contain all of its content." (Netscape 4.0b1)
Note: Clipping does not re-establish the wrapping of lines. In order to present the text in this "clipped" layer, I also had to decrease the width of the layer. By decreasing the width of the layer, the lines were rewritten to the size of the width= attribute. Then I included the clip= statement to "fake" the effect. Any other way and I would have "chopped" off the ends of the lines.