I'm attempting to customize the appearance of a jQuery mobile listview using CSS by adding a border radius to each item.
Although things seem to be working mostly as expected, I've encountered a problem where only the first and last <li></li>
items have rounded corners!
You can see this issue by checking out this JSFIDDLE
This is the basic CSS code I'm using:
.dotted-list li a {
border-radius: 5px;
margin: 5px !important;
}
.dotted-list {
background-color: #CCC !important;
/*margin-left:-8px !important;
margin-right:16px !important;
padding-left:5px !important;
padding-right:15px !important;*/
margin: 0 !important;
width: 100%;
}
If anyone has any suggestions on how to fix this issue, I would greatly appreciate it!