css

ol 番号をデザインする(ゼロパディングで数字を表示)

2023/03/15

ol.tp_caseContents{
counter-reset: my-counter;
list-style: none;
}

ol.tp_caseContents li {
position: relative;
background: url(‘../img/stn024.png’);
background-color: #f7f7f7;
padding: 50px 80px;
border-radius: 0.6em;
-webkit-box-shadow: 0 9px 31px rgba(0, 0, 0, .2);
box-shadow: 0 9px 31px rgba(0, 0, 0, .2);
}

ol.tp_caseContents li::before{
content: counter(my-counter, decimal-leading-zero);
counter-increment: my-counter;
color: #e4e7e6;
display: block;
font-weight: 800;
font-family: ‘Roboto’, sans-serif;
line-height: 1;
position: absolute;
right: 0;
bottom:0px;
font-size: 20.0rem;
}

ol.tp_caseContents li::after{
content: “CASE”;
display: block;
font-family: ‘Roboto’, sans-serif;
color: #e4e7e6;
font-weight: 800;
position: absolute;
right: 0;
bottom:190px;
font-size: 6.0rem;
width: 230px;
text-align: center;
}