美文网首页
CSS&JS一些问题

CSS&JS一些问题

作者: pomelo_西 | 来源:发表于2018-08-27 13:10 被阅读0次
  1. 实现div横向排列,元素往两边撑, 中间自动撑开空格。在父元素里设置
  display: flex;
  justify-content: space-between;// 元素两边撑, 中间空格
  flex-wrap: wrap;  //自动换行
  1. 背景图片自适应div
  background-image: url('https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1534338303259&di=32ea50cea87d2a19800734392896ec96&imgtype=0&src=http%3A%2F%2Fi.shangc.net%2F2018%2F0628%2F20180628094600404.jpg');
  background-size:contain;
  background-repeat: no-repeat;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;

背景图片自适应

  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  1. text-overflow:ellipsis 文字超出省略号代替不起作用解决方法
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;

原文档http://yunkus.com/text-overflow-ellipsis-do-not-work/

  1. rich-text 如果使用了不受信任的HTML节点,该节点及其所有子节点将会被移除,比如<font></font>

  2. CSS苹方字体
    https://www.jianshu.com/p/bc9f57a645bd

  3. 小程序v-html解析html标签,以及对文本format操作

//html
    <div class="content">
      <div v-html="body"></div>
    </div>
//js
this.body = this.body.replace(/<img/g, '<img style="height: 100%;width: 100%;margin-bottom: 33rpx;"')
.replace(/<p/g, '<p style="margin-bottom: 15rpx"')
.replace(/src="\//g, 'src="' + DOMAIN + '/')
  1. <scroll-view>隐藏滚动条
  ::-webkit-scrollbar{
    width: 0;
    height: 0;
    color: transparent;
  }

8、vue阻止点击事件冒泡

<div v-if="item.status == 'On'" class="downline" @click.stop="isPublish(item.nid, item.sid, '0', index)"><trans labelKey="btn_offline"/></div>

参考网址:https://blog.csdn.net/iceking66/article/details/78246626

9、es6 new set去重

this.originalScript = Array.from(new Set(this.originalScript))

参考网址:https://blog.csdn.net/u012830533/article/details/73551104

相关文章

  • CSS&JS一些问题

    实现div横向排列,元素往两边撑, 中间自动撑开空格。在父元素里设置 背景图片自适应div 背景图片自适应 tex...

  • 时间是良药也是毒药

    时间会解决一些问题,时间也会让一些问题越发糟糕。

  • 周总结74

    还是会被一些问题“折磨”着 大脑已然快爆炸 一些问题没解决 又出现一些问题 可能人生即问题吧 无名的大志 胡兰成也...

  • 2018-01-13

    今天大糊涂对我的代码做了瘦身,发现了一些问题,修正了一些问题,规范了一些问题,小曾童鞋,正在让我学习发红包和发代金...

  • 元哲学

    哲学起源于一些问题,而一些问题又引发了另外一些问题,这些问题又引出了新的问题。 一些基本问题就像是:什么是意义?上...

  • 安装cocoaPods出错

    在安装mPaaS平台时,出现了一些问题,后来把ruby删除,cocoaPods卸载了,重新装,也是出现了一些问题:...

  • 59离开时才想的一些问题

    离开时才想的一些问题

  • 2021-02-01

    我状态又出了一些问题

  • iOS - 骨架屏集成问答文档和使用注意点

    前言 鉴于大家在集成TABAnimated的过程中,可能会遇到一些问题。有一些问题是对TABAnimated不够了...

  • 项目Scrum实施中的一些问题

    项目Scrum实施中的一些问题

网友评论

      本文标题:CSS&JS一些问题

      本文链接:https://www.haomeiwen.com/subject/uwpwbftx.html