mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
b199b5b398
* add support for wasm * add test data for wasm * add support for llvm * add support for postCSS * add support for pest * refactor test data fmt * rename wasm to webassembly * update
28 lines
340 B
Plaintext
28 lines
340 B
Plaintext
// 27 lines 18 code 4 comments 5 blanks
|
|
|
|
/**
|
|
multi-line
|
|
*/
|
|
div {
|
|
width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
|
|
}
|
|
|
|
div:nth-child(1n) {
|
|
float: left;
|
|
margin-right: 30px;
|
|
clear: none;
|
|
}
|
|
|
|
div:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
div:nth-child(3n) {
|
|
margin-right: 0;
|
|
float: right;
|
|
}
|
|
|
|
div:nth-child(3n + 1) {
|
|
clear: both;
|
|
}
|