Answers for "css make text adjust to width"

7

css change text size

p {
	font-size: 150% /*px, cm, in, etc.*/; 
}
Posted by: Guest on May-14-2020
2

css text to fit container

//The viewport-percentage lengths are relative to the size of the initial
//containing block. When the height or width of the initial containing block
//are changed, they are scaled accordingly.
//vw = (% of the viewport width). So using it will look like this:
p {
    font-size: 2.5vw;
}
Posted by: Guest on July-06-2020

Code answers related to "css make text adjust to width"

Browse Popular Code Answers by Language