JSFiddle - React, Tailwind, and code Playground

by Suresh Pattu

HTML

<html>
    <body>
        <select id="select">
            <option selected="selected"><span class="grey_color">select one option</span></option>
        <option >one</option>
        <option >two</option>
        <option >three</option>
        <option >four</option>
        <option >five</option>
        </select>
    </body>
        </html>

CSS

.grey_color{color:#ccc;font-size:14px;}