-5
Based on the HTML below, how would you insert an image aligned before the first <h>
in such a way that the image is positioned to the left. The <h>
are positioned in the center.
<header>
<div id="wrapper">
<div id="header">
<h>Fábrica:<%= request.getAttribute("display-fabrica") %></h>
<h>|</h>
<h>Doca:<%= request.getAttribute("display-doca") %></h>
</div>
</div>
</header>
What would be
<h>
? I don’t know that tag.– Sam
My home your CSS?
– hugocsl
Opa, it follows: header { display:flex; Justify-content:center; height:52px; } header div h { color:#4163b1; font-Weight: Bold; font-size: 44px; }
– Dener Alencar
The image has to stay before a specific H or it has to stay before everyone?
– hugocsl
Before all.
– Dener Alencar
You want the image to be "pasted" in <h> or pasted to the left of the window?
– Sam
The image pasted on the left edge, the centered <h> s. The image and the horizontally aligned <h> s.
– Dener Alencar