Ich möchte eine gestapelte Bar mit inneren vertikalen Text. Ich habe es nicht in die richtige Position gebracht. Dies ist, wie ich will es: Gestapelte Bar css
Dies ist mein Code und Ausgang:
.colWrapper{
height:200px;
width:100px;
position:relative;
border:1px solid #ccc;
}
.barContainer{
position:absolute;
bottom:0;
width:100%;
}
.bar{
widith:100%;
padding:10px;
transform: rotate(90deg);
text-align:center;
margin:0
}
<div class="colWrapper">
<div class="barContainer">
<div class="bar" style="background-color:#b4cde2;">Software</div>
<div style="clear:both;"></div>
<div class="bar" style="background-color:#7ca7cc;">Banking</div>
</div>
</div>
Vielen Dank für Ihre Antwort, erreichen wir fast, aber ich will es gestapelt Diagramm mögen, können Sie das Bild sehen Sie bitte i angebracht. –