Search
 
SCRIPT & CODE EXAMPLE
 

CSS

font weight

font-weight: normal; /*equals font-weight: 400; */
font-weight: bold; /*eq font-weight: 700; */

font-weight: 100;
		   : 200
		   : 100n, n = 1...9

/* Relative to the parent */
font-weight: lighter;
font-weight: bolder;
Comment

font weight

normal -> The default, defines what is considered the weight of the normal 
		  characters.	
bold -> Defines thick characters than normal ones
bolder -> Defines thicker characters than normal ones
lighter -> Defines lighter characters than normal ones
[100, 200, 300, 400, 500, 600, 700, 800, 900] -> Goes from thin to thick 
		characters.
        Where 400 is the same as normal.
        700 is the same as bold.
        900 the same as bolder.
initial -> Sets this property to its default value.
inherit	-> Inherits this property from its parent element.
Comment

font weight numbers

/*
Thin, Hairline				100
Extra Light, Ultra Light	200
Light						300
Normal, Regular				400
Medium						500
Semi Bold, 					600
Bold						700
Extra Bold, Ultra Bold		800
Black, Heavy				900
*/

.myclass {
 font-weight: normal; /* 400 */
}

.myOtherClass {
 font-weight: 700;  /* Bold */
}

/* You can Use this List to see all the different Types */
/* Make sure you have the Font Files Downloaded and Embedded */

Press Like if you like my post :)
Comment

font weight

font-weight: 375;

font-variation-settings: 'wght' 375;
Comment

PREVIOUS NEXT
Code Example
Css :: border bottom css 
Css :: move sidebar to top on mobile 
Css :: promise.resolve 
Css :: css hide select label 
Css :: CSS Height, Width and Max-width 
Css :: como fazer uma linha vertical no html 
Css :: css quitar el icono de lista 
Css :: html css text between Horizontal line 
Css :: Changing Image depending on Mobile or Desktop HTML & CSS 
Css :: make element fit in vh and vw 
Css :: enable xdebug ddev 
Css :: difference bw box and border box 
Css :: flexbox in css 
Css :: material form css 
Css :: otp input next field html css 
Css :: how to remove default border 
Css :: animations css 
Css :: logic in css 
Css :: table tr sortable helper css 
Css :: css drop down 
Css :: td min-height not working 
Css :: initialize toast 
Css :: css grid generator 
Css :: align center without using margin 
Css :: pink hex code 
Css :: how to add carasoule in html using css 
Css :: powershell convertto-html css 
Css :: pourquoi mon css ne fonctionne pas quand je recharge la page 
Css :: Enhancer for Youtube DeepDark Theme 
Css :: enable gutenberg for post 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =