css的一个小动图标代码

2020-10-14  本文已影响0人  烂笔头2020
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<style>
.search{   
    width:80px;    
    height:40px;    
    border-radius:40px;    
    border:2px solid lightblue;    
    position: absolute;       
    outline:none;    
    text-indent:12px;    
    color:#666;    
    font-size:16px;    
    padding:0;    
    -webkit-transition:width 0.5s;}
    
.search:focus{    
    width:200px;}
</style>
<body>
<input class="search" type="text" placeholder="搜索...">

</body>
</html>

CSS :focus 选择器
:focus选择器用于选择具有焦点的元素。

上一篇 下一篇

猜你喜欢

热点阅读