在设置login背景时,找到了一张这样的图片:但是设置成login背景时,如果没有做一些css适应设置,图片就变样了,变成了这样:严重变形了,这就造成了一种理想与现实的差距。若想解决这个自适应问题,其实很好解决,只需要在前端代码里加上这样css即可: 1 .main { 2 background: ...
分类:
Web程序 时间:
2020-11-11 15:50:24
阅读次数:
12
使用css定制表格: .table{ display:table; /*相当于table*/ section{ &:nth-of-type(1){ display:table-header-group; /*相当于thead*/ background:#555; color:#fff; } &:nt ...
分类:
Web程序 时间:
2020-11-08 17:12:24
阅读次数:
27
增删改查 <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:padding="16dp" android:orientation="vertical" android:background="@drawable/bg" andr ...
分类:
移动开发 时间:
2020-11-06 02:34:22
阅读次数:
27
线性渐变 linear-gradient(direction, color-stop1, color-stop2, ...); 带兼容写法 这两个是效果一样的 background: linear-gradient(to bottom, #51098A 0%, #ffffff 100%); back ...
分类:
Web程序 时间:
2020-11-01 20:45:22
阅读次数:
27
alignment top_right #是否嵌入桌面 background yes #是否绘制窗口边框 draw_borders no #窗口边框 border_width 10 #cpu_avg_samples 2 #默认颜色 #default_color cornflowerblue #默认字 ...
分类:
其他好文 时间:
2020-10-29 10:29:31
阅读次数:
29
css背景缩写属性可以在一个声明中设置所有的背景属性,css背景图像支持引入多个图像. 主要属性有:background-color,background-image,background-repeat,background-position,background-attachment,backgr ...
分类:
其他好文 时间:
2020-10-29 09:38:40
阅读次数:
14
基于vue语法 分页加载(vue+element -ui) <template> <div> <el-pagination class="pagination" background layout="prev, pager, next" :pageSize="pageSize" :total="to ...
分类:
其他好文 时间:
2020-10-21 21:27:16
阅读次数:
29
width:200px; height:150px; background: radial-gradient(circle at bottom right, transparent 15px, aqua 0) bottom right, radial-gradient(circle at botto ...
分类:
其他好文 时间:
2020-10-19 23:08:52
阅读次数:
39
一、两列布局 1.1 左列定宽,右列自适应 效果: (1)利用float+margin实现 html代码: <body> <div id="left">左列定宽</div> <div id="right">右列自适应</div> </body> css代码: #left { background-c ...
分类:
其他好文 时间:
2020-10-18 16:21:55
阅读次数:
21
<template> <view :style="{width: windowWidth + 'px', height: windowHeight + 'px', 'background-color': '#000'}"> <view class="goback" @click="goback" : ...
分类:
移动开发 时间:
2020-10-18 10:01:49
阅读次数:
22