bonjour, je debute en js et je cherche comment faire en sorte que m'a barre de recherche marche
[modération]petite correction de mise en forme du code[/modération]
Modifié par niuxe (21 Jan 2020 - 00:42)
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="https://kit.fontawesome.com/7505b65026.js"></script>
<title></title>
</head>
<body>
<div class="recherche">
<input type="text" name="recherche" placeholder="Recherche">
<a href=""><i class="fas fa-search"></i></a>
</div>
</body>
</html>
.recherche{
background-image: radial-gradient(circle at top left, yellow, red);
position: absolute;
padding: 10px;
border-radius: 50px;
width: 80vw;
margin: 0vh 10vw;
}
input{
padding: 5px;
border: none;
background:none;
outline: none;
width: 77vw;
}
i{
color: black;
}
[modération]petite correction de mise en forme du code[/modération]
Modifié par niuxe (21 Jan 2020 - 00:42)