react native css样式
react native 布局 RN css 样式 react_native 在react native中使用的样式布局基本都是flex box的布局方式 作用在父容器: flexDirection //控制子元素的排列方式 --row:横向布局 --column:纵向布局 alignItems //控制子元素的对齐方式,(…
553 2017-02-21 去围观css3文本文章分段
文章分段效果类似于: -moz-column-count:4; -webkit-column-count:4; column-count:4; http://www.myexception.cn/HTML-CSS/1437425.html
476 2016-11-21 去围观css未来新的布局方式—Flex布局
要了解什么主轴、交叉轴不然后面知识很难理解。上图是主轴和交叉轴的默认方向情况,一般都不会去改变。主轴不一定是水平方向,也可以是垂直方向。主轴决定着交叉轴的方向。所以主轴方向决定着flex布局。flex-direction属性决定着主轴方向。 Fle…
604 2016-11-03 去围观关于css3的background背景属性
学习background是基础,但是我相信很多人都没把它玩好,直接上干货。 单图片 background:#ccc url("images/gift_bot.png") no-repeat fixed 10px 50px/90% auto; 10px 50px : 这个是表示距离左边的距离10px,距离顶部距离50px,也可以用%表示,也支持负数-10px …
443 2016-09-26 去围观first-child与last-child获取不到元素原因
html代码如下 <a href="#" class="button"><</a><a href="#" class="button">></a><div id="f">F</div><div id="s">S</div><div id="t">T</div> css代码如下 .button:last-child { b…
739 2016-08-04 去围观