I have a normal paragraph element within the body element, which contains multiple lines of text that when the browser window is shrunk, forces the text to the jump to the next line. I don't want this to happen but for it have a defined and constant structure of how many lines the text takes up. And when I shrink the browser window, I want it to stay like that in the same place so the it just cuts some of it off the screen rather then it moving along with the edge of the browser. Thank you.
here's my code:
p {
color: white;
font-size: 0.9em;
font-weight: bold;
position: absolute;
top: 200px;
left: 200px;
text-align: center;
}
My HTML atm is literally a body element and a paragraph element atm with text inside it.
