Answers for "css label font size"

CSS
37

font size css

.class {
	font-size: 12px;
}
Posted by: Guest on February-15-2020
0

change the font-size on a label css

.group {
  margin-bottom: 20px;
}
.group label {
  font-size: 10px;
}
.group2 label {
  font-size: 4px;
}
Posted by: Guest on June-09-2021
0

change the font-size on a label html

<div class="group">
  <label for="input1">First label</label>
  <input type="text" name="input1">
</div>
<div class="group group2">
  <label for="input2">Second label</label>
  <input type="text" name="input2">
</div>
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language