Adding border bottoms to labels of radio buttons

I have a form within a table and I want to separate the options by a line or border bottom. I don’t want to underline the text or add the border to the actual radio. Here is what I want it to look like.

image

Any help is appreciated!

1 Like

The <hr> tag creates a horizontal line between elements.

2 Likes

In your css file

input[type="radio"] { /* Use id/class instead if you have one */
  border-bottom: 1px solid #ccc;
}
1 Like