vue如何统一样式(reset.css与border.css)

目录
  • 统一样式(reset.css与border.css)
    • reset.css
    • border.css
  • vue基础样式应用

统一样式(reset.css与border.css)

reset.css

不同浏览器对相同标签的显示效果,有时候往往不同,那么在做项目的时候就需要对基本的样式进行设置,以达到在不同浏览器下显示效果是相同的,reset.css的作用就在于此。

所有,大家很有必要收藏一下,在做项目的时候直接使用即可。

代码:

@charset "utf-8";
html {
    background-color: #fff;
    color: #000;
    font-size: 12px
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td,
pre,
xmp {
    margin: 0;
    padding: 0
}

body,
input,
textarea,
button,
select,
pre,
xmp,
tt,
code,
kbd,
samp {
    line-height: 1.5;
    font-family: tahoma, arial, "Hiragino Sans GB", simsun, sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
    font-size: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: tahoma, arial, "Hiragino Sans GB", "微软雅黑", simsun, sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-weight: normal
}

address,
cite,
dfn,
em,
i,
optgroup,
var {
    font-style: normal
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left
}

caption,
th {
    text-align: inherit
}

ul,
ol,
menu {
    list-style: none
}

fieldset,
img {
    border: 0
}

img,
object,
input,
textarea,
button,
select {
    vertical-align: middle
}

article,
aside,
footer,
header,
section,
nav,
figure,
figcaption,
hgroup,
details,
menu {
    display: block
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "\0020"
}

textarea {
    overflow: auto;
    resize: vertical
}

input,
textarea,
button,
select,
a {
    outline: 0 none;
    border: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0
}

mark {
    background-color: transparent
}

a,
ins,
s,
u,
del {
    text-decoration: none
}

sup,
sub {
    vertical-align: baseline
}

html {
    overflow-x: hidden;
    height: 100%;
    font-size: 50px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, sans-serif;
    color: #333;
    font-size: .28em;
    line-height: 1;
    -webkit-text-size-adjust: none;
}

hr {
    height: .02rem;
    margin: .1rem 0;
    border: medium none;
    border-top: .02rem solid #cacaca;
}

a {
    color: #25a4bb;
    text-decoration: none;
}

border.css

该css样式用于解决移动端1像素边框问题。

问题分析:有些手机的屏幕分辨率较高,是2-3倍屏幕。

css样式中border:1px solid red;在2倍屏下,显示的并不是1个物理像素,而是2个物理像素。为了解决这个问题,引入border.css是非常有必要的。

代码:

@charset "utf-8";
.border,
.border-top,
.border-right,
.border-bottom,
.border-left,
.border-topbottom,
.border-rightleft,
.border-topleft,
.border-rightbottom,
.border-topright,
.border-bottomleft {
    position: relative;
}
.border::before,
.border-top::before,
.border-right::before,
.border-bottom::before,
.border-left::before,
.border-topbottom::before,
.border-topbottom::after,
.border-rightleft::before,
.border-rightleft::after,
.border-topleft::before,
.border-topleft::after,
.border-rightbottom::before,
.border-rightbottom::after,
.border-topright::before,
.border-topright::after,
.border-bottomleft::before,
.border-bottomleft::after {
    content: "\0020";
    overflow: hidden;
    position: absolute;
}
/* border
 * 因,边框是由伪元素区域遮盖在父级
 * 故,子级若有交互,需要对子级设置
 * 定位 及 z轴
 */
.border::before {
    box-sizing: border-box;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #eaeaea;
    transform-origin: 0 0;
}
.border-top::before,
.border-bottom::before,
.border-topbottom::before,
.border-topbottom::after,
.border-topleft::before,
.border-rightbottom::after,
.border-topright::before,
.border-bottomleft::before {
    left: 0;
    width: 100%;
    height: 1px;
}
.border-right::before,
.border-left::before,
.border-rightleft::before,
.border-rightleft::after,
.border-topleft::after,
.border-rightbottom::before,
.border-topright::after,
.border-bottomleft::after {
    top: 0;
    width: 1px;
    height: 100%;
}
.border-top::before,
.border-topbottom::before,
.border-topleft::before,
.border-topright::before {
    border-top: 1px solid #eaeaea;
    transform-origin: 0 0;
}
.border-right::before,
.border-rightbottom::before,
.border-rightleft::before,
.border-topright::after {
    border-right: 1px solid #eaeaea;
    transform-origin: 100% 0;
}
.border-bottom::before,
.border-topbottom::after,
.border-rightbottom::after,
.border-bottomleft::before {
    border-bottom: 1px solid #eaeaea;
    transform-origin: 0 100%;
}
.border-left::before,
.border-topleft::after,
.border-rightleft::after,
.border-bottomleft::after {
    border-left: 1px solid #eaeaea;
    transform-origin: 0 0;
}
.border-top::before,
.border-topbottom::before,
.border-topleft::before,
.border-topright::before {
    top: 0;
}
.border-right::before,
.border-rightleft::after,
.border-rightbottom::before,
.border-topright::after {
    right: 0;
}
.border-bottom::before,
.border-topbottom::after,
.border-rightbottom::after,
.border-bottomleft::after {
    bottom: 0;
}
.border-left::before,
.border-rightleft::before,
.border-topleft::after,
.border-bottomleft::before {
    left: 0;
}
@media (max--moz-device-pixel-ratio: 1.49), (-webkit-max-device-pixel-ratio: 1.49), (max-device-pixel-ratio: 1.49), (max-resolution: 143dpi), (max-resolution: 1.49dppx) {
    /* 默认值,无需重置 */
}
@media (min--moz-device-pixel-ratio: 1.5) and (max--moz-device-pixel-ratio: 2.49), (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 2.49), (min-device-pixel-ratio: 1.5) and (max-device-pixel-ratio: 2.49), (min-resolution: 144dpi) and (max-resolution: 239dpi), (min-resolution: 1.5dppx) and (max-resolution: 2.49dppx) {
    .border::before {
        width: 200%;
        height: 200%;
        transform: scale(.5);
    }
    .border-top::before,
    .border-bottom::before,
    .border-topbottom::before,
    .border-topbottom::after,
    .border-topleft::before,
    .border-rightbottom::after,
    .border-topright::before,
    .border-bottomleft::before {
        transform: scaleY(.5);
    }
    .border-right::before,
    .border-left::before,
    .border-rightleft::before,
    .border-rightleft::after,
    .border-topleft::after,
    .border-rightbottom::before,
    .border-topright::after,
    .border-bottomleft::after {
        transform: scaleX(.5);
    }
}
@media (min--moz-device-pixel-ratio: 2.5), (-webkit-min-device-pixel-ratio: 2.5), (min-device-pixel-ratio: 2.5), (min-resolution: 240dpi), (min-resolution: 2.5dppx) {
    .border::before {
        width: 300%;
        height: 300%;
        transform: scale(.33333);
    }
    .border-top::before,
    .border-bottom::before,
    .border-topbottom::before,
    .border-topbottom::after,
    .border-topleft::before,
    .border-rightbottom::after,
    .border-topright::before,
    .border-bottomleft::before {
        transform: scaleY(.33333);
    }
    .border-right::before,
    .border-left::before,
    .border-rightleft::before,
    .border-rightleft::after,
    .border-topleft::after,
    .border-rightbottom::before,
    .border-topright::after,
    .border-bottomleft::after {
        transform: scaleX(.33333);
    }
}

使用方法:在vue项目中的入口文件main.js中引入即可。

// 在入口文件中引入基本样式
import './assets/styles/reset.css'
import './assets/styles/border.css'

vue基础样式应用

用于记录自己经常用到的一些样式

1、文本溢出隐藏

<template slot-scope="scope">
    <div class="text-hidden">{{ scope.row.address }}</div>
</template>
.text-hidden{
 overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
overflow: hidden;
text-weight: ellipsis;
white-space: normal;
word-break: break-all;
word-wrap: break-word;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;

2.大的外边框,类似卡片的样式

.shopcheck {
  border: 1px solid #999;
  margin: 20px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 4px 6px #999;
  background-color: #fff;
}

3、详情普通表格

<el-dialog title="店铺发布详情" :visible.sync="dialogVisible" width="50%">
      <div class="table-d">
        <table border="0" cellspacing="1" cellpadding="0">
          <tr>
            <td style="width: 100px">店铺名</td>
            <td>{{ pub_shop.shop_name }}</td>
          </tr>
          <tr>
            <td style="width: 100px">店铺联系方式</td>
            <td>{{ pub_shop.shop_mobile }}</td>
          </tr>
          <tr>
            <td style="width: 100px">文章标题</td>
            <td>{{ msg.title }}</td>
          </tr>
          <tr>
            <td>类型</td>
            <td>{{ msg.type }}</td>
          </tr>
          <tr>
            <td>店铺地区</td>
            <td>{{ msg.area}}</td>
          </tr>
          <tr>
            <td>店铺详细地址</td>
            <td>{{ msg.address }}</td>
          </tr>
          <tr>
            <td>联系号码</td>
            <td>{{ msg.mobile }}</td>
          </tr>
          <tr>
            <td>发布时间</td>
            <td>{{ msg.create_time }}</td>
          </tr>
          <tr>
            <td>浏览量</td>
            <td>{{ msg.views }}</td>
          </tr>
          <tr>
            <td>文章内容</td>
            <td>{{ msg.content }}</td>
          </tr>
          <tr>
            <td>图片</td>
            <td>
              <el-image v-viewer="{movable: false,title:false}"  :src="msg.images" class="img" ></el-image>
            </td>
          </tr>
        </table>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">关闭</el-button>
      </span>
    </el-dialog>
.table-d table {
  background: #999;
  width: 100%;
}
.table-d table td {
  background: #fff;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}

4、input框长度限制

<el-input v-model="inData.name" maxlength="30"  show-word-limit  placeholder="请输入通告标题"></el-input>

5、看图插件的引入( viewer )这个插件比element的image图片操作更多

viewer 文档

npm install v-viewer --save

在main中配置

import Viewer from 'v-viewer'
import 'viewerjs/dist/viewer.css'
Vue.use(Viewer)
Viewer.setDefaults(
  {options:{
    'title':false,
  },
 
})

使用

<el-image v-viewer="{movable: false,title:false}"  :src="msg.images" class="img" ><div slot="error" class="image-slot"> </div></el-image>

和element模态框混用时,出现的层级错乱

.el-dialog__wrapper{
    z-index: 2014 !important;
  }
  .v-modal{
    z-index: 2000 !important;
  }

5、对element表格某列进行修改

<el-table-column prop="address" label="方式"> 
    <template slot-scope="scope">
       <span>{{ scope.row.condition | condition }}</span>
     </template> 
</el-table-column>

表格里的图片样式

<template slot-scope="scope">
      <el-image v-viewer="{movable: false,title:false}"  :src="scope.row.images[0]" class="tableimg"  v-if="scope.row.images[0]" ></el-image>
</template>

6、搜索框

<el-container class="imgsearch"
      ><el-input
        placeholder="请输入要搜索标题或内容"
        prefix-icon="el-icon-search"
        v-model="input2"
        style="width: 300px; margin-right: 20px"
        @input="change"
        @change="search"
        maxlength="255"
      >
      </el-input>
      <div></div>
      <el-select
        v-model="value"
        placeholder="筛选信息类型"
        style="margin-right: 20px"
        :clearable='true'
        @clear='getList'
      >
        <el-option
          v-for="item in options"
          :key="item.value"
          :label="item.label"
          :value="item.value"
        >
        </el-option>
      </el-select>
      <el-button type="primary" @click="search">搜索</el-button>
    </el-container>

7、element 表格中的按钮

<template slot-scope="scope">
    <el-button @click="pay(scope.row)" :plain="true" type="success" size="small">支付</el-button>
    <el-button @click="look(scope.row)" size="small" type="warning" plain>查看</el-button>
    <el-button @click="auth(scope.row)" :plain="true" size="small" type="primary">修改</el-button>
    <el-button type="danger" plain size="small" @click="del(scope.row)" style="margin-right: 10px">删除</el-button>
</template>

9、引用svg图标

<svg-icon :iconClass="classname[index]" class="icon"/>

10、输入框只能输入数字,限制长度

maxlength="4"
oninput = "value=value.replace(/[^\d]/g,'')"

10、设置滚动条样式

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(222, 222, 227,.8);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
// 隐藏火狐滚动条
  overflow:auto;
  /* overflow: scroll; */
  overflow-x:hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;

11、element上传走自己的请求

<el-upload
    action="#"
    list-type="picture-card"
    :on-success="uploadImg"
    :on-remove="handleRemove"
    :limit="1"
    :file-list="fileList"
       :http-request="upImg"
>
    <img src="../assets/img/upload.png" class="centerimg" />
</el-upload>
upImg(param) {
      const formData = new FormData();
      formData.append("file", param.file);
      this.$http
        .upLoadImg(formData)
        .then((res) => {
          
        })
        .catch((err) => {
         
        });
    },

12、让文本框textarea不可拖动

textarea{
    resize: none;
}

13.隐藏滚动条

 overflow: scroll;
  overflow-x:hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;

14.抓到element选择器下面的那个弹窗

//  :popper-append-to-body="false"  加上这个字段
<el-select v-model="value" placeholder="选择名称" class="selectList-item" :popper-append-to-body="false" >
              <el-option
                v-for="item in options"
                :key="item.value"
                :label="item.label"
                :value="item.value">
              </el-option>
            </el-select>
.index >>> .el-select-dropdown {
  color: #fff !important;
  background-color:#277fba !important;
  border: none;
  box-shadow: 0 0 10px rgba(255, 255, 255,.3);
}
.index >>> .el-select-dropdown .el-select-dropdown__empty{
  color: #fff !important;
}
.index >>> .el-select-dropdown .el-select-dropdown__item{
 color: #fff !important;
}
.index >>> .el-select-dropdown .hover{
  background: #186192 !important;
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • 在vue项目中设置一些全局的公共样式

    目录 vue设置全局的公共样式 思路 vue公共样式与公共方法 问题描述 公共样式 公共方法 vue设置全局的公共样式 本公司开发的产品,在运维去客户哪里上线的时候,客户可能会对产品主页面的一些色调,字体大小等不满意.所以需求就是在我们的开发包在往客户服务器上发布的时候,有一个scss文件可以随时调整这些字体和颜色. 思路 1.首先在public公共文件的css文件夹下面新建一个allstyle.scss的样式文件夹,在这个里面定义一些样式,和字体的大小.这样做的好处就是,在webpack打包的

  • vue样式叠层z-index不起作用的解决方案

    目录 z-index不起作用 z-index失效的原因 vue element 弹框样式叠层问题 z-index不起作用 问题:当点击出现element弹框时,与当前的页面出现叠层问题(使用样式z-index无果),导致弹框页面无法输入. 问题效果图如下: 这里的两个下拉框和echarts图表与弹框修改密码出现叠层问题. 解决思路: 本人一开始在层级上寻在了半天,未能解决问题(采用样式z-index无果),后来发现是上个开发兄弟在两个下拉框和echarts图表均使用到了样式 position:

  • 关掉vue插件Vetur格式化的时候自动添加的样式操作

    目录 1 点击左下角设置按钮 2 点击设置到设置界面 3 在搜索栏输入需要查找的配置 4 点击我们想要修改的配置项 5 把默认项prettier修改为vscode-typescript 前言: 刚用Vetur的时候会发现只要格式化就会加什么小括号,冒号之类杂七杂八的标点符号.看着特别别扭,现在手把手教你如何关掉这个功能,傻瓜式教学.专门为小白设计 先打开vscode 1 点击左下角设置按钮 2 点击设置到设置界面 3 在搜索栏输入需要查找的配置 Vetur › Format › Default

  • vue如何使用vant组件的field组件disabled修改默认样式

    目录 使用vant组件的field组件disabled修改默认样式 vue+vant修改样式 1.当<style>没有scoped时 2.有scoped时 使用vant组件的field组件disabled修改默认样式 由于vue开发时会在style加上scoped避免全局污染,所以正常开发时直接修改外部组件(vant)的样式时会不生效,我们把scoped删除后会发现样式是可以生效的. 但是scoped是肯定不能不要的. 所以我们可以用 /deep/(深度)来修改样式 举例 —— 修改vant

  • vue修改swiper框架轮播图小圆点的样式不起作用的解决

    目录 swiper框架轮播图小圆点样式不起作用 不要加 scoped swiper小圆点默认样式改变 swiper框架轮播图小圆点样式不起作用 不要加 scoped 下面是错误写法 <style  scoped>  .swiper-pagination-bullet-active {     background: white;   } </style> 正确写法 <style >  .swiper-pagination-bullet-active {     back

  • vue-router-link选择样式设置方式

    目录 vue-router-link选择样式设置 第一种 第二种 hash和history的区别 1.hash 2.history(服务器环境下才有效果) vue-router的link样式设置 vue-router-link选择样式设置 第一种 在router-link组件上 添加属性 active-class=‘ative’ 在css中设置 .actve样式即可 第二种 在css中写样式 router-link-exact-active <template>   <div id=&q

  • vue如何统一样式(reset.css与border.css)

    目录 统一样式(reset.css与border.css) reset.css border.css vue基础样式应用 统一样式(reset.css与border.css) reset.css 不同浏览器对相同标签的显示效果,有时候往往不同,那么在做项目的时候就需要对基本的样式进行设置,以达到在不同浏览器下显示效果是相同的,reset.css的作用就在于此. 所有,大家很有必要收藏一下,在做项目的时候直接使用即可. 代码: @charset "utf-8"; html { backg

  • vue中使用定义好的变量设置css样式详解

    目录 前言 实现 第一种情况 第二种情况 语法 方法一 方法二 总结 前言 在做项目的时候,通常会遇到需要在 HTML 标签上绑定变量来设置样式,对于这种需求,共有两种情况. 实现 第一种情况 如果是对于代码中实实在在存在的 HTML 标签,我们可以直接绑定变量来设置样式,比如改变表格的边框. 先设置一个表格边框样式的 JS 变量(table_border). 再在 HTML 标签的 style 属性上绑定该 JS 变量. <template> <div class="app-

  • Vue中引入样式文件的方法

    一.在vue中使用scss 首先进行安装如下依赖: cnpm i sass-loader node-sass -D 二.vue中引入样式文件 1)在index.html模板html文件中引入,这种方式引入的原样编译在生成的html文件中,如果想要通过link引入外部的样式文件,建议使用这种方式: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>2imis&

  • vue 使用Jade模板写html,stylus写css的方法

    日常工作都是使用vue开发页面和webApp,写的多了就想偷懒简化各种书写方式,所以使用了jade写html,stylus写css,省了很多的步骤和提高了效率. 安装包 // 安装jade包 npm install jade jade-loader --save-dev // 如果使用vue-cli构建项目,则不需要安装stylus相关的包,vue-cli默认已安装 npm install stylus stylus-loader --save-dev 配置文件 // webpack.base.

  • 详解vue 中 scoped 样式作用域的规则

    哈喽!大家好!我是木瓜太香,今天我们来聊一个 vue 的样式作用域的问题,通常我们开发项目的时候是要在 style 上加上 scoped 来起到规定组件作用域的效果的,所以了解他们的规则也是很有必要的,可以让你更清晰的了解你的项目样式是怎么运作的. 先来说说实现方式 vue中的样式作用域是通过属性选择器来实现的,例如同样一个类名,我们是通过 .类名[属性名] 来做区分的,我们这里主要是要搞清楚这里的属性名是怎么分配的. 样式作用域规则 接下来我们分情况来说一下样式作用域: 对于有样式作用域的组件

  • 解决vue scoped html样式无效的问题

    1.问题场景 page1,page2都使用flexible移动端自适应的时候,有一个页面page2需要手动设置rem基准值, //手动设置基准 html{ font-size: 120px !important; } 但是在page2引用的self.less里面设置了基准,竟然没有生效 2.问题分析scoped属性 在引用self.less的时候,使用了属性scoped vue中引入了scoped这个概念,设计思想就是让当前组件的样式不会修改到其他页面的样式,使用了data-v-hash的方式来

  • Vue实现动态样式的多种方法汇总

    目录 1. 三元运算符判断 2. 动态设置class 3. 方法判断 4. 数组绑定 5. computed结合es6对象的计算属性名方法 1. 三元运算符判断 <text :style="{color:state?'#ff9933':'#ff0000'}">hello world </text> <script> export default { data() { return { state: true } } } </script>

  • Java接口统一样式返回模板简介

    这篇文章主要介绍了Java接口统一样式返回模板简介,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 背景 在进行接口开发时,一般需要一个固定的返回样式,成功和失败的时候,都按照这种格式来进行统一的返回,这样,在与其他人进行接口之间的联调时不会显得很杂乱无章.而这种固定的格式如果放在Java的每个接口单独处理时,又会在接口开发时很繁琐,所以这个时候可以采用封装一个实体类,统一返回固定模板格式的内容. 封装模板 先看一下没有封装之前,接口代码和返回格

  • vue 自定义右键样式的实例代码

    最近用python写了个小说程序的api,想着用 vue 做个系统管理数据,脑子里出现的是这个画面: 但是这种样式的管理后台已经做了太多了,已经审美疲劳,后面又想了一种类操作系统的UI界面: 主要是靠 双击 和 右键 来操作,可操作多个模态框,跟操作 windows 类似,接下来在里面拆出一个功能块来写一篇文章,就是 自定义系统默认的右键 . 自定义右键操作有五个步骤: 阻止 默认右键. 获取当前右键点击时的 x / y 坐标,及 id . 自定义右键菜单样式及内容,定位在指定的位置后显示. 返

  • Java接口统一样式返回模板的实现

    前言 一开始,我们在写项目的时候,前端要什么数据,我们就返回什么数据,每个接口也都写得不一样很乱:随着前后端的分离:对于代码规范的要求也越来越严谨:接口都是统一样式的返回模板: 下面,接受一种我之前用过的返回模板: 一.首先来看下我们的Controller接口 /** * 获取用户信息 * @param token 微信登入者token * @param id 商品id * @return 商品详细信息 */ @PostMapping(value = "getUserInfo") @R

随机推荐