Reputation: 95
I created this code, but I don't able to put the icon on the right corner of div with class valori.
Here the desired result :
Here the code :
HTML
<div class="circletop">
<div class="numberpr">3° anno</div>
<div class="lordo">Valore lordo stimato</div>
<!--I add div icon here-->
<div class="icon"></div>
<div class="valori"> <?=$min3_anno ." - " . $max3_anno?></div>
</div>
Here my fiddle : https://jsfiddle.net/5g42Lx7n/ I need to add the icon in the top right corner like image.
thanks
Upvotes: 8
Views: 35632
Reputation: 4472
Check https://jsfiddle.net/bgo2e5zk/4/
.icon{position:absolute;right:0;top:-15px}
.valori{position:relative;}
I put the icon inside .valori
, then add position:relative
to .valori
and position:absolute
to .icon
, and to finish, set top and left
to the icon to positioning it.
Upvotes: 7
Reputation: 77
.valori {
position: absolute;
right: 0;
top: 0;
}
there can be unneeded paddings and margins. If so:
.valori {
position: absolute;
right: 0;
top: 0;
margin: 0;
padding: 0;
}
otherways add this:
z-index: 1000;
Upvotes: 1
Reputation: 2185
You need to position your icon. I have used a dummy icon, you can try using yours and play with the position that suits your need.
.circletop {
/* circle styles */
width: 300px;
height: 300px;
font-family: Raleway;
border: 1px solid #222;
border-radius: 50%;
margin: 0 auto;
box-shadow: 0 0 20px #ccc;
/* become a flex container */
/* its children will be flex items */
display: flex;
/* place items in column */
flex-direction: column;
/* center flex items horizontally */
align-items: center;
/* center all content vertically */
justify-content: center;
}
/* simulate one more item to "balance" dex text */
.circletop:before {
content: "\A0";
visibility: hidden;
}
.lordo {
color: #45cec8;
padding-top: 10px;
padding-bottom: 25px;
font-weight: bold;
font-size: 19px;
}
.valori {
border-radius: 50px;
background: #05c6bf;
padding: 14px;
width: 100%;
color: #fff;
text-align: center;
box-shadow: 0 0 9px #45cec8;
font-size: 25px;
font-weight: bold;
}
.imageRight {
position: relative;
float: right;
top: -20px;
right: -10px;
}
<div class="circletop">
<div class="numberpr">3° anno</div>
<div class="lordo">Valore lordo stimato</div>
<!--I add div icon here-->
<div class="icon"></div>
<div class="valori"> <?=$min3_anno ." - " . $max3_anno?><img class="imageRight" src="https://img.icons8.com/windows/24/000000/checkmark.png"></div>
</div>
Upvotes: 1
Reputation: 674
You can add an icon like your showing image, here is the solution
HTML:-
<div class="circletop">
<div class="numberpr">3° anno</div>
<div class="lordo">Valore lordo stimato</div>
<!--I add div icon here-->
<div class="icon">my icon</div>
<div class="valori"> € 65.000 - € 67.000</div>
</div>
CSS:-
.circletop {
/* circle styles */
width: 300px;
height: 300px;
font-family: Raleway;
border: 1px solid #222;
border-radius: 50%;
margin: 0 auto;
box-shadow: 0 0 20px #ccc;
/* become a flex container */
/* its children will be flex items */
display: flex;
/* place items in column */
flex-direction: column;
/* center flex items horizontally */
align-items: center;
/* center all content vertically */
justify-content: center;
}
/* simulate one more item to "balance" dex text */
.circletop:before {
content: "\A0";
visibility: hidden;
}
.lordo {
color: #45cec8;
padding-top: 10px;
padding-bottom: 25px;
font-weight: bold;
font-size: 19px;
}
.valori {
border-radius: 50px;
background: #05c6bf;
padding: 14px;
width: 100%;
color: #fff;
text-align: center;
box-shadow: 0 0 9px #45cec8;
font-size: 25px;
font-weight: bold;
}
.icon {
position: relative;
bottom: -19px;
right: -162px;
}
Upvotes: 5
Reputation: 152
Put the icon div inside valori div and set valori to position:relative
and icon to position:absolute
. See code below
.circletop {
/* circle styles */
width: 300px;
height: 300px;
font-family: Raleway;
border: 1px solid #222;
border-radius: 50%;
margin: 0 auto;
box-shadow: 0 0 20px #ccc;
/* become a flex container */
/* its children will be flex items */
display: flex;
/* place items in column */
flex-direction: column;
/* center flex items horizontally */
align-items: center;
/* center all content vertically */
justify-content: center;
}
/* simulate one more item to "balance" dex text */
.circletop:before {
content: "\A0";
visibility: hidden;
}
.lordo {
color: #45cec8;
padding-top: 10px;
padding-bottom: 25px;
font-weight: bold;
font-size: 19px;
}
.valori {
border-radius: 50px;
background: #05c6bf;
padding: 14px;
width: 100%;
color: #fff;
text-align: center;
box-shadow: 0 0 9px #45cec8;
font-size: 25px;
font-weight: bold;
position: relative;
}
.icon {
width: 20px;
height: 20px;
background-color: #000;
border-radius: 50%;
position: absolute;
right: -5px;
top: -5px;
}
<div class="circletop">
<div class="numberpr">3° anno</div>
<div class="lordo">Valore lordo stimato</div>
<!--I add div icon here-->
<div class="valori"><div class="icon"></div> <?=$min3_anno ." - " . $max3_anno?></div>
</div>
Upvotes: 1