# Tricks
# Terms
# Text style
# Text overflow
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; /* ellipsis là 3 chấm =)) ... */
}
# Text with Background
# White-space
nl2br
is a php function to convert character\n
into tag <br />
in a strings. In this case, we can use a css property to achieve this case
.my-content {
white-space: pre-line;
}
normal
: default - xuống hàng khi hết chỗnowrap
: ko bao giờ xuống hàng cho tới khi gặp thẻ<br >
pre
: hoạt động giống thẻ<pre />
, xuống hàng khi gặp ký tự\n
(new-line)pre-line
: xuống hàng khi hết chỗ và gặp ký tự\n
(new-line)pre-wrap
: giốngpre-line
nhưng giảm khoảng trắng hiển thị
# Gradient border
# Center image
# Parent relative, child absolute
.video-thumbnail {
position: relative;
.play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
# Shadow
# Dark mode
Check if user prefers dark mode
In CSS
@media (prefers-color-schema: dark) {
/* scheme */
}
@media (prefers-color-schema: light) {
/* scheme */
}
# Hình trắng đen (Thanos style)
img {
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
}
# Đánh index cho elements
body {
/* Set "my-sec-counter" to 0 */
counter-reset: my-sec-counter;
}
h2::before {
/* Increment "my-sec-counter" by 1 */
counter-increment: my-sec-counter;
content: "Section " counter(my-sec-counter) ". ";
}
# Remove js events
Add event các kiểu bằng JS, vẫn éo hiểu tại sao thì nhớ thuộc tính này của CSS
div.ex1 {
pointer-events: none;
}
# System font stack
Lợi dụng những font có sẵn mặc định trong OS...
# Cách 1
/* System Fonts as used by GitHub */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
# Cách 2
/* Define the "system" font family */
@font-face {
font-family: system;
font-style: normal;
font-weight: 300;
src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma");
}
/* Now, let's apply it on an element */
body {
font-family: "system";
}