当前位置:网站首页>Common mixins
Common mixins
2022-07-03 14:02:00 【pzy_ six hundred and sixty-six】
Fix the problem of height collapse caused by floating
@mixin clearfix {
&:after {
clear: both;
content: '.';
display: block;
height: 0;
line-height: 0;
overflow: hidden;
}
*height: 1%;
}
Single line text is too long to display ellipsis
@mixin textOverflow($width:100%,$display:block) {
max-width: $width;
display: $display;
white-space: nowrap;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
}
边栏推荐
- Go language web development series 26: Gin framework: demonstrates the execution sequence of code when there are multiple middleware
- Uniapp skills - dom display and hiding
- JVM object lifecycle
- [développement technologique - 24]: caractéristiques des technologies de communication Internet des objets existantes
- RocksDB LRUCache
- JS continues to explore...
- Leetcode-1175. Prime Arrangements
- Implementation of Muduo asynchronous logging
- Which securities company has the lowest Commission for opening an account online? I want to open an account. Is it safe for the online account manager to open an account
- Dlopen() implements dynamic loading of third-party libraries
猜你喜欢
[email protected]纳米粒子"/>金属有机骨架MIL-88负载阿霉素DOX|叶酸修饰UiO-66-NH2负载阿霉素[email protected]纳米粒子

Mastering the cypress command line options is the basis for truly mastering cypress

Screenshot of the operation steps of upload labs level 4-level 9

UiO-66-COOH装载苯达莫司汀|羟基磷灰石( HA) 包裹MIL-53(Fe)纳米粒子|装载黄芩苷锰基金属有机骨架材料
![[机缘参悟-37]:人感官系统的结构决定了人类是以自我为中心](/img/06/b71b505c7072d540955fda6da1dc1b.jpg)
[机缘参悟-37]:人感官系统的结构决定了人类是以自我为中心
[email protected] Nanoparticles) | nano metal organic framework carry"/>Metal organic framework material zif-8 containing curcumin( [email protected] Nanoparticles) | nano metal organic framework carry

QT learning 21 standard dialog box in QT (Part 2)

MySQL 数据处理值增删改

Failure of vector insertion element iterator in STL

JVM class loading
随机推荐
MySQL 数据增删改查综合案例
How to delete an attribute or method of an object
Folic acid modified metal organic framework (zif-8) baicalin loaded metal organic framework composite magnetic material (AU- [email
[ACNOI2022]猜数
Nucleic acid modified metal organic framework drug carrier | pcn-223 metal organic framework encapsulated ad adamantane | zif-8 encapsulated adriamycin (DOX)
Go: send the get request and parse the return JSON (go1.16.4)
Metal organic framework MOFs loaded with non steroidal anti-inflammatory drugs | zif-8 wrapped Prussian blue loaded quercetin (preparation method)
信创产业现状、分析与预测
交联环糊精金属有机骨架负载甲氨蝶呤缓释微粒|金属-有机多孔材料UiO-66负载黄酮苷类药物|齐岳
叶酸修饰的金属-有机骨架(ZIF-8)载黄芩苷|金属有机骨架复合磁性材料([email protected])|制备路线
Uniapp skills - scrolling components -1
Golang — template
C language standard IO function sorting
Golang - command line tool Cobra
Qt学习25 布局管理器(四)
全面发展数字经济主航道 和数集团积极推动UTONMOS数藏市场
SQL Injection (GET/Search)
Example analysis of QT learning 18 login dialog box
金属有机骨架MOFs装载非甾体类抗炎药物|ZIF-8包裹普鲁士蓝负载槲皮素(制备方法)
Go language web development series 28: solve cross domain access of CORS with gin contrib / CORS