Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how mto change the label font style in css

.swap {
  position: relative;
  padding-left: 80px;
}
.swap + .swap {
  margin-top: 5px;
}
.swap label {
  position: absolute;
  left: 0;
}

input:focus+label {
  font-family: 'Roboto Medium', sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 100;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #mto #change #label #font #style #css
ADD COMMENT
Topic
Name
9+7 =