我是靠谱客的博主 诚心绿草,最近开发中收集的这篇文章主要介绍vue 圆角输入框,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在vue中实现圆角的搜索框
在这里插入图片描述

<template>
  
    <div class="box">
         <div class="search-box">
            
            <input type="text" class="search-left" placeholder="请输入要搜索的内容"><input type="button" class="search-right" value="搜 索" icon="el-icon-search">
           
         </div>
</div>
  
</template>
 
<script>
export default {
  data() {
    return {
    }
  }
};
</script>



<style lang="less" scoped>
 
 .box{
     text-align:center;
    //  font-size: 0;
 }
 .search-box{
     margin:0 auto; 
     width: 750px;
 }
.search-left{
    text-indent: 20px;
     width:80%;
    height:50px;
    border:rgb(137, 233, 217) 1px solid;
    // float:left;
    margin-top:20px;
    border-bottom-left-radius:25px;
    border-top-left-radius:25px;
    outline:none;
    // text-align:20px ;
}
.search-right{
    width:19%;
    height:50px;
    background:rgb(137, 233, 217);
    color: #fff;
    border:none;
    margin-top:20px;
    border-bottom-right-radius:25px;
    border-top-right-radius:25px;
    outline:none;
}


</style>

最后

以上就是诚心绿草为你收集整理的vue 圆角输入框的全部内容,希望文章能够帮你解决vue 圆角输入框所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部