Skip to content

Instantly share code, notes, and snippets.

@zymiboxpay
zymiboxpay / format_json.html
Last active November 7, 2016 03:30
将字符串整理成易读的 json 格式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>format json</title>
<style>
textarea {
width: 100%;
min-height: 800px;
overflow-y: auto;
@zymiboxpay
zymiboxpay / 0_readme.md
Last active December 6, 2016 08:06
algorithm practises
@zymiboxpay
zymiboxpay / solution case
Created October 11, 2016 10:38
fixed position problem
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>absolute solution</title>
<style>
.container {
position: absolute;
display: flex;
@zymiboxpay
zymiboxpay / problem_case
Created October 11, 2016 10:18
fixed position problem
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>fixed problem</title>
<style>
.container {
position: relative;
}