首页 > TAG信息列表 > Bordered

css &连接符

&是less、sass的语法,是一种连接符。 .el-row { margin-bottom: 20px; &:last-child { margin-bottom: 0; } } sass语法,等同于: .el-row { margin-bottom: 20px; } .el-row:last-child { margin-bottom: 0; } 另一种用法: .bordered { &.float { float: lef

09 - Vue3 UI Framework - Table 组件

接下来做个自定义的表格组件,即 table 组件 返回阅读列表点击 这里 需求分析 开始之前我们先做一个简单的需求分析 基于原生 table 标签的强语义 允许用户自定义表头、表体 可选是否具有边框 那么可以整理出以下参数表格 参数 含义 类型 可选值 默认值 heads 表头 Array

[LeetCode] 1139. Largest 1-Bordered Square 最大的以1为边界的正方形

Given a 2D grid of 0s and 1s, return the number of elements in the largest square subgrid that has all 1s on its border, or 0 if such a subgrid doesn't exist in the grid. Example 1: Input: grid = [[1,1,1],[1,0,1],[1,1,1]] Output: 9 Example 2: I

react+andt中局内调整默认样式

.name{ :global{ .ant-descriptions-item-label{ width:85px; } .ant-descriptions-bordered .ant-descriptions-item-content{ width:100px; } .ant-descriptions-bordered .ant-descriptions-item-content:last-child{ width:auto;

less入门及语法了解

1.less官方网站: 英文:http://www/lesscss.org/ 中文:http://www.lesscss.net/ 2.less.js下载: 一.输入网址:http://www.lesscss.net 二.点击更新日志 三.点击less.js 四.点击右边的download zip 五.在下载到的文件夹里找到压缩包 六.点开找到less文件,dist/less 七.将less.mi

Largest 1-Bordered Square

Given a 2D grid of 0s and 1s, return the number of elements in the largest square subgrid that has all 1s on its border, or 0 if such a subgrid doesn't exist in the grid.   Example 1: Input: grid = [[1,1,1],[1,0,1],[1,1,1]] Output: 9 Example 2: