Answers for "making image smaller png css"

CSS
0

make an image smaller css

css:
.example-class {
    width: 400px;
    height: auto;
}

html:
<img class="example-class" src="example.jpg"/>
Posted by: Guest on March-20-2021
0

how to make png smaller css

.pdflink:after {
    background-image: url('/images/pdf.png');
    background-size: 10px 20px;
    display: inline-block;
    width: 10px; 
    height: 20px;
    content:"";
}
Posted by: Guest on February-06-2021

Browse Popular Code Answers by Language