0
css-learner posted
howmuch max and min value can be for font-weight property in css
for my college project . i jst start making some webpages . i use inspect tool for debugging css property.i am wondering howmuch we can add max or min value to font-weight. like i added font-weight:999; and chrome inspect tool says "Invalid Property Value"
.label {
display: inline;
padding: .2em .2em .2em;
font-size: 75%;
font-weight: 999;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: -0.75em;
}
above is boostrap label css . and i played with it little bit and make font-weight to 999 and google chrome inspect tool say "Invalid Property Value"
so what should be max or min range for font-weight ?