I would like to have a line break forced at the just before the "+" character, if possible using css styling, or otherwise in a different way. Is this possible?
#myDiv{
width: 80%
}
#myP{
color: blue;
font-family: arial;
font-size: 3em;
font-weight: 900;
line-height: 1.5em;
}
<div id="myDiv">
<p id="myP">Potatoes, peas, carrots, corn, beans, butter + meat, gravy, yorkshire pudding and desert.</p>
</div>