Skip to content

Commit

Permalink
placeholder fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshahid707 committed May 21, 2024
1 parent 477c889 commit a19bb42
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1415,9 +1415,19 @@ text-align: center;
text-transform: capitalize;
width: 300px;
}
.subscribe__input:focus::placeholder{
.subscribe__input:focus::-webkit-input-placeholder {
visibility: hidden;
}
.subscribe__input:focus:-moz-placeholder {
visibility: hidden;
}
.subscribe__input:focus::-moz-placeholder {
visibility: hidden;
}
.subscribe__input:focus:-ms-input-placeholder {
visibility: hidden;
}

@media only screen and (max-width:768px) {
.subscribe__input{padding: 0 50px 0 20px;}
}
Expand Down

0 comments on commit a19bb42

Please sign in to comment.