Answers for "line break css"

CSS
1

css line break width

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

enter in css

white-space: pre-line
Posted by: Guest on March-17-2020
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
0

new line ::after class

#headerAgentInfoDetailsPhone:after {
  content:"Office: XXXXX A Mobile: YYYYY ";
  white-space: pre; /* or pre-wrap */
}
Posted by: Guest on June-13-2020

Browse Popular Code Answers by Language