Looking to create a top bar with two images and text in the middle, but having trouble centering the text. This is specifically for mobile devices.
Below is my HTML code:
<img src="1.jpg" />
Company Name
<img src="2.jpg" />
I attempted the following code, however, was not successful in centering the text:
<div style="float:left"><img src="1.jpg" /></div>
<div>Company Name</div>
<div style="float:right"><img src="2.jpg" /></div>
<div style="clear:both"/></div>
The images appear correctly, but I am unsure how to center the text between them. Any suggestions would be greatly appreciated.
Thank you!