I'm developing a website, but without using any framework to do so; I want to emphasize that I just started in front studies, and that CSS is totally new to me.
I'm trying to fix an image in a certain region of a div (this is ok) and allocate text around it. However, it is not working as intended. Below the image of what I have so far:
WhatIneedtodoistomakethetext"flow" around the character, but I have no idea how to do it, and I've already broken my mind with this problem. Any help is welcome. Here is the code that I'm using:
HTML:
<section class="welcome">
<h1>Seja o Melhor</h1>
<img class="featured put-on-top-left" src="img/teemo.png" alt="Conquiste a vitória!">
<a class="featured-link" href="">Criar nova <em>build</em></a>
<p class="get-around-right">Crie e compare estratégias de <em>build</em>, analisando as estátiscas que são modificadas a cada novo item escolhido e obtenha o melhor conjunto de itens para o seu campeão!</p>
</section>
CSS:
.welcome {
padding: 15px;
text-align: center;
width: 250px;
border: 5px solid #c0c0c0;
margin: auto;
margin-top: 50px;
background-color: #e9eaec
}
.welcome h1 {
font-family: 'roman-grids-cap';
font-size: 2em;
text-transform: uppercase;
color: #4d4d4d
}
.featured {
max-width: 125px;
position: absolute;
margin-top: 27px;
left: 0px
}
.featured-link {
display: block
}
Thanks in advance for your help!