<div class="container">
<div class="fixed">content</div>
</div>
.fixed {
var fs = require("fs") | |
var ssl_options = { | |
key: fs.readFileSync('privatekey.pem'), | |
cert: fs.readFileSync('certificate.pem') | |
}; | |
var port = process.env.PORT || 3000; | |
var express = require('express'); | |
var ejs = require('ejs'); | |
var passport = require('passport') |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Review vertical-align</title> | |
<style> | |
.icon-x { display: inline-block; width: 50px; height: 50px; vertical-align:middle; } | |
</style> | |
</head> | |
<body> |
/*global describe, beforeEach, afterEach, it */ | |
'use strict'; | |
(function () { | |
describe('Phone Message Validator Plugin', function () { | |
beforeEach(function() { | |
var fixture = [ | |
'<form method="post" action=".">', | |
'<button>Get Verify Code</button>', | |
'<span class="message hide">message sent, wait <span class="countdown"></span>', | |
'<input class="code" type="text"/>', |
!!! 5 | |
//if lt IE 7 | |
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> | |
//if IE 7 | |
<html class="no-js lt-ie9 lt-ie8"> | |
//if IE 8 | |
<html class="no-js lt-ie9"> | |
//[if gt IE 8]><! | |
html(class='no-js') | |
//<![endif] |
ul { | |
// align | |
margin-left: 1px; | |
} | |
li { | |
float: left; | |
border: 1px solid #ccc; | |
// container bg | |
background: #FFF; |
`click` event triggers after the `blur` so the link gets hidden. Instead of click use `mousedown` it will work. |
<div class="ellipsis"> | |
<div> | |
<p> | |
content text here | |
<i></i> | |
</p> | |
</div> | |
<a id="readmore" href="#">Read More</a> | |
</div> |
npm i --save-dev webpack webpack-dev-server url-loader file-loader style-loader css-loader autoprefixer-loader img-loader --save-dev |
/* Bind for https://ant.design/components/steps/ */ | |
[%bs.raw {|require("antd/lib/steps/style")|}]; | |
type dotOptions = { | |
. | |
"index": int, | |
"status": string, | |
"title": string, | |
"description": string, |