logo image css

Solutions on MaxInterview for logo image css by the best coders in the world

showing results for - "logo image css"
Liah
13 Jan 2019
1<!-- Try your best to make sure that your logo has a transparent background -->
2
3<div class="container">
4    <img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" alt="googleimage">
5</div>
6
7<!-- css: Set your container size to whatever you want -->
8
9.container{
10   border: 1px solid transparent;
11   width: 100px;
12   height: 100px;
13}
14.container img{
15   width: 100%;
16   height: auto;
17}