
HTML&CSS
小白style
这个作者很懒,什么都没留下…
展开
-
小程序自动识别接口返回的换行符
css原创 2022-08-30 15:17:57 · 424 阅读 · 0 评论 -
人脸识别用到的扫描图
<!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta name="...转载 2019-10-16 14:58:31 · 1518 阅读 · 0 评论 -
CSS实现文本超过部分,超出两行,超出部分省略号显示
文字超过部分显示为省略号<style>.p{ width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}</style><body> <p class="p"> 我是一个文本我是一...原创 2019-03-15 09:20:00 · 19806 阅读 · 0 评论 -
vm布局
@media screen and (min-width: 375px) { html { /* iPhone6的375px尺寸作为16px基准,414px正好18px大小, 600 20px */ font-size: calc(100% + 2 * (100vw - 375px) / 39); font-size: calc(16...原创 2019-04-02 15:28:51 · 884 阅读 · 0 评论 -
纯CSS滚动指示器技术实现
<style> body { position: relative; } .indicator { height: 1900px; position: absolute; top: 0; right: 0; left: 0; bottom: 0; background: linear-gradient(to right top, te...转载 2019-07-30 10:30:59 · 475 阅读 · 0 评论