Dots Nav Test

Testing nav dots to test rendering in iOS Safari.

by Boots

HTML

<ul>
    <li><button type="button" role="none">1</button></li>
    <li><button type="button" role="none">2</button></li>
    <li><button type="button" role="none">3</button></li>
    <li><button type="button" role="none">4</button></li>
</ul>

CSS

* {
    box-sizing:border-box;
}
ul {
    list-style: none;
    text-align: center;
}
li {
    display: inline-block;
    height: 1em;
    margin: 0 0.5em;
    width: 1em;
}
button {
    background-color: #CCC;
    border: 2px solid #000;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    text-indent: -999em;
    overflow: hidden;
    text-align: left;
    direction: ltr;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
    padding: 0;
}