This article shares with you how to use Vue to implement a search box with a magnifying glass. The specific content is as follows Usage of font icons in input single tag: The first step is to globally import the iconfont icon in main.js; The code is as follows: <template> <div class="login"> <!--Header Search--> <div class="top"> <div class="top-text iconfont">Guangzhou</div> <div class="top-btn"> <input type="text" :placeholder="icon" class="iconfont"> </div> <div class="top-x iconfont iconlingdang1"></div> </div> </div> </template> <script> export default { name:"Login", data(){ return { icon:'\ue637 Please enter keywords' } } } </script> <style scoped> .login{ width: 100%; height: 100%; } .top{ width: 100%; height: 0.8rem; background-color: pink; display:flex; align-items: center; font-size:0.35rem; } .top-text{ margin-left:0.3rem; } .top-btn{ width: 4.8rem; height: 0.5rem; margin-left:0.2rem; margin-right:0.55rem; } .top-btn>input{ width: 100%; height:0.5rem; border-radius:1rem; border:none; outline: none; padding-left:0.3rem; } </style> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Example code for using Nginx to implement 301 redirect to https root domain name
This article shares the specific code of JavaScri...
Create a simple Spring boot web project Use the i...
introduction When I was learning more about datab...
When you send a network request, the following sa...
This story starts with an unexpected discovery tod...
Caused by: java.sql.SQLException: Incorrect strin...
Types of Indexes in MySQL Generally, they can be ...
<br />Previously, we learned how to set cell...
The content involved in Web front-end development...
Table of contents The CSS custom variable functio...
1. What is the cardinality? Cardinality refers to...
Set a background image for the table. You can use...
This article uses examples to illustrate the prin...
Effect The effect diagram is as follows Implement...
The animation part of CSS will be blocked by JS, ...