hey i want to know is how do you move a br element in a paragraph when it is on a different screen size. I know that sounds like a confusing/tricky question but let me explain:
This br element in the p tag right here. Say where the br element is now it is diplaying that when this site is view on a desktop. But i want to the view the break line (the br element) placed right before the word "break" when i view it on an smaller device such as a tablet or a phone or something.
<p>I am a <br/> Paragraph with a break line in it.</p>
Is it possible? If it is, is there a way to do it with javascript or css without actually changing the html code it self?
` element. It's setting your paragraph's `width` property according to the device's width, for example with `%` width, so the line will break on it's own. – Koby Douek Jul 16 '17 at 06:00