I have created a spec table for the Watch 4 using this code snippet:
<div class="specs">
<ul class="info">
<li>Size</li>
<li>44 mm</li>
</ul>
</div>
<div class="specs">
<ul class="info">
<li>Width</li>
<li>43.3 mm</li>
</ul>
</div>
Accompanied by this CSS style:
.specs{
position: relative;
top: 20px;
display: flex;
flex-direction: row;
align-items: center;
}
.info{
display: flex;
flex-direction: row;
color: black;
align-items: center;
margin-left: auto;
margin-right: auto;
border-bottom: 1px black solid;
padding: 0;
}
.info li{
display: flex;
flex-direction: row;
margin-right: 200px;
margin-left: 200px;
}
You can preview the project here. Make sure to expand the CSS tab for better visibility.
If you scroll all the way down to the "Connections" tab, you'll notice that everything is misaligned.