“CSS Wie man ein Symbol auf einem Foto platziert” Code-Antworten

CSS Wie man ein Symbol auf einem Foto platziert

<link href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" rel="stylesheet"/>

<div class="container">
   <img src="https://placekitten.com/300/300">
   <a href="dog.png" download="new-filename"><i class="fas fa-download"></i></a>
</div>
Nutty Newt

CSS Wie man ein Symbol auf einem Foto platziert

.container { position: relative; }
.container img { display: block; }
.container .fa-download { position: absolute; bottom:0; left:0; }
Nutty Newt

Ähnliche Antworten wie “CSS Wie man ein Symbol auf einem Foto platziert”

Fragen ähnlich wie “CSS Wie man ein Symbol auf einem Foto platziert”

Weitere verwandte Antworten zu “CSS Wie man ein Symbol auf einem Foto platziert” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen