I am currently faced with a challenge where I have a css element positioned on-top of an iframe. What I actually need is for them to be aligned on the same line, but for some reason I just can't seem to figure it out.
<div class="tsk">
<p>Words</p></div>
</div>
.tsk{
line-height:1.4em;
font-size: 1em;
padding:25px;
width:30%;
color:#FFF;
background: rgba(75,123,365,.5);
float: center;
text-align:left;
border-radius:50px 50px 0px 0px;
}
iframe{
width:70%;
height:500px;
}