Responsive text in button.

by razh

HTML

<button>
    <p>Edit</p>
</button>

CSS

@media screen and (min-width: 320px) {
    button > p:after {
        content: " options";
    }
}