How to make a horizontal rule

Follow the recipe below to make your own horizontal rule in Stadium:

  1. Add a label control to a page
  2. Add the class ‘hr’ to the label
  3. Create a css class in the StyleSheet in the Application Explorer called ‘hr’ as below
.hr {
	display:block;
	border-bottom:1px solid black;
}

PS: If you don’t have a ‘Classes’ property on the Label Control and no StyleSheet in your Application Explorer, you need to enable them in the application properties (Enable StyleSheet)

2 Likes