Why aren't there bullet points in this unordered list?

In the project example below, why don’t bullet points appear in the unordered lists? Also, what determines whether the radio button appears on the right or left side of the label?

https://codepen.io/freeCodeCamp/full/VPaoNP

  1. The <ul>'s have inline style on them style="list-style: none;" also the display: block; on the `.radio, .checkbox´ selector will remove them as well.

  2. The float: left; is setting the position of the radio button.

.userRatings, input[type="checkbox"] {
  float: left;
  margin-right: 5px;
}
1 Like