JSFiddle - React, Tailwind, and code Playground
HTML
<button type="submit" class="btn btn-default">Кнопка - при клике появляется браузерная обводка</button>
CSS
.bs-example>.btn, .bs-example>.btn-group {
margin-top: 5px;
margin-bottom: 5px;
}
.btn-default {
color: #333;
background-color: #fff;
border: 1px #ccc solid;
}
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: 400;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:active, .btn:focus {
outline: none;
}
.btn::-moz-focus-inner {
border: 0;
}