- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
HTML 和 CSS 在 jsfiddle 中以备不时之需。
<div class="box-input">
<input type="text" placeholder="Email Address" class="input-icon-email cly-pvxl" name="email">
</div>
<div class="box-input">
<input type="text" placeholder="Email Address" class="input-icon-email cly-pvxl" name="email">
</div>
CSS
.box-input{
border-left: 7px solid transparent;
cursor: pointer;
display: block;
vertical-align: middle;
width: 100%;
}
.box-input:hover,
.box-input:focus{
border-left: 7px solid green;
}
.box-input input{
width: 100%;
border: 0;
padding-left: 80px;
}
.box-input input:focus,
.box-input input:hover{
outline: 1px solid #eee;
}
.input-icon-email{
display: inline-block;
position: relative;
vertical-align: middle;
height: 34px;
width: 34px;
background: url('http://mbsales.com/WebAssets/email_icon1.gif') left center no-repeat;
padding-left: 30px;
}
尝试伪造输入 div,使其显示左边框绿色,但意识到当通过输入选项卡转到下一个字段时,它不会显示左边框绿色。另一个问题是如果尝试在输入 css 中添加 border-left green,它会在焦点时显示,并且图像图标会跳动。还想用左边的填充将图标推开,但什么也没发生。
也许做错了。帮助表示赞赏。
最佳答案
你可以试试这个:
添加这个:
.box-input input{ border-left: 7px solid transparent;}
并将悬停样式返回给输入:
.box-input input:focus,
.box-input input:hover{
outline: 1px solid #eee;
border-left: 7px solid green;
}
关于css - 假输入文本字段 - 何时获得焦点以及如何将图标从左侧推开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24287871/
在我的 iOS 应用程序中,我使用多个 UIView,其中一次仅显示 1 个。通过按钮我可以在这些 View 之间切换。 显示新的: self.viewPage2.frame = CGRectMake
我有这个问题,我的 Bootstrap 菜单将另一个名为“title”的 div 向下推(在移动设备上,xs)到目前为止网站链接:http://20162.hosts.ma-cloud.nl/port
我花了很长时间试图让它工作。 我有一个名为“RightExtra”的部分和一个名为“RightExtraContent”的 div。我正在努力使这两个 div 可以在窗口调整到某个点时自由移动,而不会
我有一个按钮列表。当我按下按钮时, View 应该以向下的方式滑出按钮,如下所示: 开始: 中途: 结束: 我该怎么做呢?应该滑出的 View 比按钮大,所以首先将 View 隐藏在按钮后面,然后向下
尝试在一个页面上显示 20 strip 有详细信息的消息。详细信息是固定的。该消息可以从无到大约 240 个字符不等。想要显示消息的第一部分,然后在悬停时显示其余部分。 我可以很好地做到这一点,但是当
所以我有一个 div : .col-4 { width:300px; height:400px; margin-bottom:20px; } 还有一些文字背景图片: .head
我是一名优秀的程序员,十分优秀!