* {
box-sizing: border-box;
}
.publication {
display: flex;
width: 100%;
margin-top: 6%;
}
.bottom1,
.bottom2 {
display: flex;
flex-direction: column;
}
.bottom1 {
width: 70%;
}
.publicationleft {
width: 700px;
height: 130px;
border-radius: 25px;
padding: 15px;
background: #C7D3DF;
color: #fff;
margin-left: 5%;
margin-bottom: 10px;
}
.publicationbottom {
width: 700px;
height: 70px;
border-radius: 25px;
padding: 15px;
background: #769DBD;
color: #fff;
margin-left: 5%;
margin-bottom: 10px;
text-align: center;
color: #fff;
padding-top: 0px;
text-decoration: none;
}
.textpub {
color: #365A6B;
font-size: 14px;
}
.link {
position: relative;
bottom: 0;
}
<div class="bottom1">
<div class="publicationleft">
<div class="textpub">FamoS – Fahrradverkehrsmodelle als Planungsinstrument zur Reorganisation des Straßenraums (2016-2018) Unter besonderer Berücksichtigung des Radverkehrs werden multimo </div>
<div class="link"><a href="https://www.google.com/"><font color="white">Link</font></a></div>
</div>
<div class="publicationleft">
<div class="textpub">FamoS – Fahrradverkehrsmodelle als Planungsinstrument zur Reorganisation des Straßenraums (2016-2018) Unter besonderer Berücksichtigung des Radverkehrs werden multimo </div>
<a href="https://www.google.com/"><font color="white">Link</font></a>
</div>
<div class="publicationleft">
<div class="textpub">FamoS – Fahrradverkehrsmodelle als Planungsinstrument zur Reorganisation des Straßenraums (2016-2018) Unter besonderer Berücksichtigung des Radverkehrs werden multimo.</div>
<a href="https://www.google.com/"><font color="white">Link</font></a>
</div>
<div class="publicationleft">
<div class="textpub">FamoS – Fahrradverkehrsmodelle als Planungsinstrument zur Reorganisation des Straßenraums (2016-2018) Unter besonderer Berücksichtigung des Radverkehrs werden multimo </div>
<a href="https://www.google.com/"><font color="white">Link</font></a>
</div>
</div>
How to lock an an element (link in this case) to the bottom-left of a div (rounded square in this case) ?
So basically, the link has to be locked bottom-left of the rounded square.
Anyone knows a solution ? I tried it with positsion: relative. Didn't work. It keeps going to the very bottom of the container.