Sorted by: Date DESC
aspect-ratio: 16 / 9
width: clamp(23ch, 50%, 46ch)
justify-content: space-between
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr))
grid-template-columns: repeat(12, 1fr)
grid-template: auto 1fr auto / auto 1fr auto
grid-template-rows: auto 1fr auto
minmax(150px, 25%)
flex: 0 1 150px
place-items: center
display: contents
display: inline-table
display: table
display: inline-grid
display: grid
display: inline-flex
display: flex
display: inline
display: inline-block
display: block
li::marker {}
list-style-position: outside
list-style-position: inside
<ol reversed>
<ol start='5'>
list-style: mongolian
list-style: lower-latin
list-style: upper-alpha
list-style: lower-greek
list-style: lower-roman
list-style: upper-roman
list-style: decimal-leading-zero
list-style: decimal
list-style: square
list-style: circle
list-style: disc
<input type='image' src='path/to/submit-button.png' alt='Submit'>
<input type='color'>
<input type='datetime-local'>
<input type='date'>
<input type='week'>
<input type='month'>
<input type='time'>
<input type='tel'>
<input type='range' min='1' max='365'>
<input type='number'>
<input type='file'>
<input type='url'>
<input type='search'>
<input type='email' mutliple>
<input type='email'>
<input type='text'>
<input type='hidden' value='My value'>
<input type='radio' value='My value'>
<input type='checkbox' value='My value'>
<input type='button' value='My button'>
<input type='reset' value='Reset'>
<input type='submit' value='Submit'>
<input type='password'>
$myElem.innerHTML = '...'
$myElem.innerHTML
var promise = import('ext-module')
import 'ext-module'
import { module as myModule } from 'ext-module'
import { module } from 'ext-module'
import module from 'ext-module'
a:visited { ... }
myArr.lastIndexOf(myStr, 2)
myArr.lastIndexOf(myStr)
myArr.indexOf(myStr, 2)
myArr.indexOf(myStr)
myArr.values()
myArr.keys()
myArr.flat(Infinity)
:root { ... }
::selection { ... }
@import 'custom.css'
@media (display-mode: browser) { ... }
@media (display-mode: minimal-ui) { ... }
@media (display-mode: standalone) { ... }
@media (display-mode: fullscreen) { ... }
@media (prefers-reduced-motion: reduce) { ... }
@media (prefers-color-scheme: light) { ... }
@media (prefers-color-scheme: dark) { ... }
<a href="https://www.silvestar.codes/" target="_top">Link</a>
<a href="https://www.silvestar.codes/" target="_parent">Link</a>
<a href="https://www.silvestar.codes/" target="_blank">Link</a>
<a href="https://www.silvestar.codes/" target="_self">Link</a>
<a href="image.png" download>Phone</a>
<a href="tel:+385.123.456.789">Phone</a>
<a href="mailto:me@silvestar.codes">Mail</a>
<a href="#main">Link</a>
<a href="./about/">Link</a>
<a href="/archive/">Link</a>
<a href="//www.silvestar.codes/">Link</a>
<a href="https://www.silvestar.codes/">Link</a>
animation-play-state: pause
animation-fill-mode: forwards
animation-iteration-count: infinite
animation-delay: 100ms
animation-timing-function: linear
animation-duration: 1s
animation-name: jump
a[href*="google.com"] {}
a[href$=".pdf"] {}
<a href="/" aria-current="page">Home</a>
a[aria-current="page"] {}
<a href="/files/file.pdf" download>Download PDF</a>
filter: drop-shadow(10px 10px 10px black)
filter: saturate(50%)
filter: opacity(50%)
filter: invert(50%)
filter: brightness(0.5)
filter: hue-rotate(90deg)
filter: grayscale(50%)
filter: contrast(50%)
filter: blur(10px)
filter: sepia(50%)
transition: opacity 3000ms ease-in-out 250ms
transition-timing-function: ease-in-out
transition-property: opacity
transition-duration: 3000ms
transition-delay: 250ms
myArray.includes(item)
myArray.entries()
myVar.length
myVar.split(' ')
myVar.join(' ')
uneval(myObj)
eval(myExp)
decodeURI(myVar)
decodeURIComponent(myVar)
encodeURI(myVar)
encodeURIComponent(myVar)
Number.isNaN(myVar)
isNaN(myVar)
Math.ceil()
Math.floor()
Math.max()
Math.min()
Math.round()
Math.trunc()
Math.pow()
Math.sqrt()
Math.random()
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/rss">
<meta charset="UTF-8">
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!DOCTYPE html>
span:not(:only-child) {}
span:not(:first-of-type) {}
span:not(:first-child) {}
span:not(:last-of-type) {}
span:not(:last-child) {}
{{ 1999 | money }}
{{ myVar | json }}
forloop.last
myArray.unshift(myElem)
myArray.shift()
myArray.pop()
myArray.push(myElem)
$myElem.setAttribute('aria-hidden', 'true')
$myElem.getAttribute('aria-hidden')
window.innerWidth
window.innerHeight
window.scrollX
window.scrollY
$myElem.getBoundingClientRect()
document.body
wp_get_upload_dir()
get_template_directory_uri()
get_template_directory()
window.requestAnimationFrame(() => {...})
window.addEventListener('scroll', () => {...})
div:only-child
div:first-of-type
div:first-child
div:last-of-type
div:last-child
div:empty
input::placeholder
visibility: hidden
@media (hover: hover) { ... }
@media (pointer: fine) { ... }
location.reload(true)
window.onpopstate = () => {}
window.history.pushState({ state: 1 }, 'My state', '#myHash')
str_replace('$', '€', $str)
const greeting = `Hello ${myVar}!`
column-count: 2
break-inside: avoid-column
get_the_terms($post_id, 'taxonomy')
get_term_by('term_taxonomy_id', $post_id)
text.trim()
strtoupper($text)
strtolower($text)
in_category('Blog')
wp_list_pluck($menu, 'object_id')
string.replace(/$/g, '')
exec(`ruby script.rb`, function (err, stdout, stderr) {})
$myElem.classList.contains('my-class')
$parent.contains($child)
articles.some(article => article.published)
articles.every(article => article.published)
new Promise(resolve => resolve()})
text-decoration-thickness: .125em
text-decoration: wavy overline Salmon
background: Salmon content-box
min-height: 100vh
let apples = shoppingList.removeLast()
new Date()
lines.find(line => new Date(line.date) <= new Date())
JSON.stringify({ item: "value" })
fs.existsSync(path)
const myClass = isHome() ? 'home' : 'category'
pointer-events: none
<wbr/>
var_dump( $variable )
border-color: currentColor
event.preventDefault()
add_shortcode( 'card' , 'generate_card' )
* + *
const { src, dest, series, or parallel } = require('gulp')
setcookie('myCookie', time() - 3600)
br { content: ' ' }
position: sticky
configs.map(config => config.path)
background-repeat: round
-moz-osx-font-smoothing: grayscale
wp_reset_postdata( )
overflow: initial
all: unset
Powered by Starter Project.