Answers for "in css bold"

CSS
92

css bold text

.text {
	font-weight: bold;
}
Posted by: Guest on February-22-2020
10

how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Posted by: Guest on November-18-2020
0

how to add bold in css

.selector {
	font-weight: bold;
}
Posted by: Guest on December-10-2021

Browse Popular Code Answers by Language