作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个边上带有图标的搜索输入。我正在使用 ReactJs。
这是我的组件:
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Icon } from 'react-fa';
import '../index.css';
class SearchInput extends Component {
static propTypes = {
placeholder: PropTypes.string
};
render() {
return (
<div className='ux-search-input-container'>
<input className='ux-search-input' type='text' placeholder={this.props.placeholder} />
<Icon className='ux-search-input-icon' name='search' />
</div>
);
}
};
export default SearchInput;
及其样式:
.ux-search-input-container {
color: $ux-color-text;
text-align: left;
vertical-align: middle;
padding: 2px;
border: solid;
border-color: $ux-color-border;
border-width: 1px;
border-radius: 4px;
}
.ux-search-input {
width: 70%;
padding: 5px 10px 5px 10px; // top right bottom left
border: none;
border-width: 0px;
}
.ux-search-input-icon {
text-align: right;
width: 30%;
}
.ux-search-input:focus {
outline: none;
box-shadow: 0px 0px 2px $ux-color-light-blue;
background-color: $ux-color-hover;
}
搜索图标移动到下一行,如:
无论容器有多小,我都需要将搜索图标保持在输入框的大小。如果容器缩小或放大,输入框应跟随尺寸并保持搜索图标在其合适的尺寸。
最佳答案
将 display: flex
添加到 CSS 中的 ux-search-input-container
类。
然后添加填充使其居中。
将position: relative
添加到ux-search-input-container
类,然后添加position: absolute;右:10px;顶部:5px
到 ux-search-input-icon
类。
工作 Codepen使用第二种方法。
关于html - 带有图标 : keep input element at a size of its container and icon on same line 的样式搜索输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45594102/
我是一名优秀的程序员,十分优秀!