JSFiddle - React, Tailwind, and code Playground

http://stackoverflow.com/questions/10890672/css-specificity-cant-get-to-the-point

by m_raffaele

HTML

<footer>
    <div class="container_12">
        <div class="grid_2">
            <ul>
                <li>
                    <strong>
                        <a href="#">test</a>
                    </strong>
                </li>
                <li>
                    <a href="#">Home</a>
                </li>
                <li>
                    <a href="#">Why </a>
                </li>
                <li>
                    <a href="#">Get Started</a>
                </li>
                <li>
                    <a href="#">Customers</a>
                </li>
                <li>
                    <a href="#">Careers</a>
                </li>
            </ul>
        </div>
    </div>
</footer>

CSS

footer ul {
    list-style-type:none;
    margin:0px;
    padding: 0px;
    border:1px solid red;
}