# 2019.02.07
[新闻] React V16.8 发布,主要的功能是推出了稳定版本的 Hooks:https://reactjs.org/blog/2019/02/06/react-v16.8.0.html (opens new window)
[文章] Vue 2.6 发布,新语法、性能改进、向 3.0 看齐:https://mp.weixin.qq.com/s/ivP5oyvfKDkxam2PzYtnUg (opens new window)
[文章] 如何去除讨厌的 Chrome 自动填充黄色背景。我用过方法一(有效),方法二(两个 Input 用这很别扭),方法三(第一次见):https://juejin.im/post/5c5a7eebf265da2da67c068d (opens new window)
[工具] 如果你用 TypeScript 构建 React 项目,Sucrase 将是一个不错的选着,它的编译速度将是 Babel 的 20 倍,演示效果 (opens new window):https://github.com/alangpierce/sucrase (opens new window)
# 配图 - Sucrase
# 示例 - 去除 Chrome 自动填充黄色背景,方法三
<!-- 附上第一幅图片效果的代码 -->
<input
type="username"
placeholder="用户名"
id="username"
name="username"
class="login-input"
>
<style>
.login-input {
background: transparent content-box;
box-sizing: border-box;
width: 90%;
height: 0;
padding: 15px 5%;
outline: none;
border: none;
border-bottom: 1px solid #333;
margin-bottom: 20px;
}
</style>