5K views
CSSAdd prefixes
1.input { 2 color: #8707ff; 3 border: 2px solid #8707ff; 4 border-radius: 10px; 5 padding: 10px 25px; 6 background: transparent; 7 max-width: 190px; 8} 9 10.input:active { 11 box-shadow: 2px 2px 15px #8707ff inset; 12} 13
HTML
1 2<input type="text" name="text" class="input" placeholder="Type something here....">