I would love to implement a line break right before the "+" character, either using css styling or through a different method. Is this task achievable?
#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>