Since I use Font Awesome version 5 I have a problem with icons inside an input element. It shows only outside the input text element.
Image of what I mean I want the icon INSIDE the input type text field.
The code:
.calendar-label::after {
content: "\f073";
font-family: "Font Awesome 5 Solid";
display: none;
position: absolute;
}
<head>
<script>
FontAwesomeConfig = { searchPseudoElements: true };
</script>
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
</head>
<body>
<label class="calendar-label">
<input type="text" name="datum">
</label>
</body>