Class Hr<T extends Hr<T>>


public class Hr<T extends Hr<T>> extends StyledElement<T>
HTML <hr> element for horizontal rules/dividers.

This class represents a horizontal rule element that creates a thematic break or visual divider in content. The element can be styled using CSS properties.

Usage:

 Hr divider = new Hr();
 divider.setWidth("80%");
 divider.setBorderColor("gray");
 
Since:
2007
Version:
1.0
Author:
Marvin P. Warble Jr.
See Also:
  • Constructor Details

    • Hr

      public Hr()
      Constructs a new Hr element.