Answers for "new line to break allowed css"

CSS
1

css line break width

span { 
    display:block;
    width:150px;
    word-wrap:break-word;
}
Posted by: Guest on March-08-2021
0

line break inside content css

p:after {
	display: block;
	white-space: pre-line;
	content: "Me too! A Me three!";
}
Posted by: Guest on May-10-2020

Browse Popular Code Answers by Language