I currently have a webpage set up, accessible here: https://plnkr.co/edit/5NWm4E868nXYyixd2SLv?p=preview
The current layout looks okay, but I feel restricted in terms of customization. Therefore, I am interested in creating 3 divs where I can have more control over the positions of specific elements. Here is a visual representation of what I aim to achieve: Image Reference -> https://ibb.co/jDF6hF. This image conveys my goal better than words.
This is my current setup: https://plnkr.co/edit/sqpAWK1h6dECDyM1SaAl?p=preview
You might notice that the existing layout does not match the desired picture. Do you know of a more effective method to achieve the desired design?
#wrapper {
overflow: hidden;
}
.item {
float: left;
width: 27%;
outline: 1px solid blue;
margin: 1% 1% 1% 1%;
padding: 2%;
}
.imageleft {
float: left;
margin: 10% 00% 00% 20%;
}
.circle {
border: solid 2px #73B7DB;
background: #73B7DB;
width: 100px;
height: 100px;
border-radius: 100px;
text-align: center;
line-height: 440%;
font-size: 22px;
text-decoration: none;
html
<div id="wrapper">
<div id="text" class="item">
<div id="midleft"><a class="imageleft circle" id="how"><font color="white">Wie</font></a></div>
<div id="midleft"><a class="imageleft circle" id="how"><font color="white">Wie</font></a></div>
<div id="midleft"><a class="imageleft circle" id="how"><font color="white">Wie</font></a></div>
</div>
<div id="module" class="item">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex
ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse mole</div>
<div id="image" class="item"><img class="imageright" src="https://placehold.it/300x200" /></div>
</div>