Responsive text in button.
by razh
HTML
<button>
<p>Edit</p>
</button>
CSS
@media screen and (min-width: 320px) {
button > p:after {
content: " options";
}
}
by razh
<button>
<p>Edit</p>
</button>
@media screen and (min-width: 320px) {
button > p:after {
content: " options";
}
}