Skip to content

Instantly share code, notes, and snippets.

View Toxiapo's full-sized avatar
🎯
Focusing

Jiayong Toxiapo

🎯
Focusing
View GitHub Profile
@Toxiapo
Toxiapo / Spaced Dotted line for borders
Created March 23, 2018 18:17
The style will let you create dotted borders with any sizes and spacings
background-image: linear-gradient(to right, #333 10%, rgba(255, 255, 255, 0) 0%);
background-position: top;
background-size: 10px 1px;
background-repeat: repeat-x;
@Toxiapo
Toxiapo / do_var_dump.php
Created October 6, 2017 21:56 — forked from pgmccann/do_var_dump.php
Formatted var_dump() for HTML output
<?php
function do_var_dump($object) {
echo "<pre>";
var_dump($object);
echo "</pre>";
}
?>