Hi @stq74.
You cannot achieve this with the means that you are trying to do this. Inline elements do not support this. Only block or inline-block elements. You need to write your CSS for this.
Never use inline styles from text editor means for layout and design purposes.
Use both options - title and text.

Add your class to addon and write CSS code using this class

Code example (perhaps you need to adjust this code for your specific case)
.my-heading {
background-color: green;
color: white;
padding: 10px 10px 3px;
}
.my-heading .sppb-addon-title {
font-size: 1.9em;
margin: -10px 10px 0 -10px;
padding: 5px 10px 10px;
background-color: black;
float: left;
}