前端分页: element-UI分页组件 <!-- 分页 --> <el-pagination :current-page="page" :page-size="size" :total="total" style="padding: 30px 0; text-align: center;" lay ...
分类:
其他好文 时间:
2021-02-15 12:11:29
阅读次数:
0
2. CSS文本属性 CSS Text(文本)属性可定义文本的外观,比如文本的颜色、对齐文本装饰文本、文本缩进、行间距等。 2.1 color文本颜色 color: red;color: #ffffff;color: rgb(255,0,255) 2.2 text-align对齐文本 text-al ...
分类:
Web程序 时间:
2021-01-25 11:22:59
阅读次数:
0
jQuery封装 css .myToast,.myToast{ position: fixed; top:50%; left:50%; z-index: 1000; color:#fff; text-align: center; border-radius: 0.2rem;; transform:t ...
分类:
其他好文 时间:
2020-12-29 11:23:54
阅读次数:
0
问题描述: 文本在浏览器中正常显示,当放到硬件显示屏中时,文本标点符号显示在句首。巨难看 度娘告知解决方案方案: text-align: justify; word-break: normal; 但是测试一波下来,无效。 参考https://www.cnblogs.com/chris-oil/p/1 ...
分类:
其他好文 时间:
2020-12-05 10:58:09
阅读次数:
7
var html = '<div style="color:#868686; font-size: 16px;text-align:center;line-height:380px;">暂无数据</div>' document.getElementById('box01').innerHTML = ...
分类:
其他好文 时间:
2020-12-02 12:23:02
阅读次数:
5
label { font-size: 0.28rem; display: inline-block; width: 0.95rem; text-align: justify; text-align-last: justify; } ...
分类:
Web程序 时间:
2020-11-24 12:40:10
阅读次数:
11
标题样式1 <p> <span style=" text-align: center; padding-bottom: 6px; padding-left: 20px; padding-right: 500px; color: #800080; padding-top: 6px; box-shado ...
分类:
Web程序 时间:
2020-11-08 17:16:18
阅读次数:
37
写表单过程中,经常会遇见需要使用两端对齐的情况,如下图,这里记录一下两端对齐的小坑 css样式如下: 1 view{ 2 display: inline-block; 3 width: 150rpx; 4 text-align:justify; 5 text-align-last:justify; ...
分类:
Web程序 时间:
2020-10-31 02:03:02
阅读次数:
33
css 水平居中的写法 水平居中 行内元素: text-align: center 块级元素: margin: 0 auto position:absolute +left:50%+ transform:translateX(-50%) display:flex + justify-content: ...
分类:
其他好文 时间:
2020-10-21 21:24:39
阅读次数:
24
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>CSS</title> <style> p{ color: red; font-size: 30px; line-height: 200px; text-align ...
分类:
Web程序 时间:
2020-10-21 20:40:08
阅读次数:
31