
css
LimJiee
这个作者很懒,什么都没留下…
展开
-
css之 :before与 :after
.before:before{ content: 'before追加内容'; display:block; color: red; } .after:after{ content: 'after追加内容'; display:block; color:blue; } <div class="before after"> div 自...原创 2019-11-28 11:56:33 · 117 阅读 · 0 评论 -
css之transition动画
兼容 div{ width:100px; transition: width 2s; -moz-transition: width 2s; /* Firefox 4 */ -webkit-transition: width 2s; /* Safari 和 Chrome */ -o-transition: width 2s; /* Opera */ } Internet Explorer 10、F...转载 2019-11-28 11:25:42 · 140 阅读 · 0 评论 -
CSS之字体加粗font-weight
css字体加粗font-weight原创 2019-11-26 10:19:31 · 1022 阅读 · 0 评论