HTML and CSS
Category: /knowledge /front_endTags: front_end
HTML
fieldset
<fieldset>
是一个划分内容的方便标签, 可以做出卡片的效果. 快速开发时可以代替<div>
<fieldset>
<legend> some caption </legend>
content ...
</fieldset>
special characters
用Unicode字符和字体设置搭配, 可以代替image来显示三角. 好处是省空间, 还可以跟着字体一起放大缩小. 缺点是有时格式不好控制.
► ►► ►►► ▶ ▷ ► ◄ ◁ ◀ ◢ ◣ ◤ ◥ ◸ ◹ ◺ ◿ ✢ ✣ ✤ ✥ ✦ ✧ ✫ ✮ ✩ ✪ ✫ ✬ ✭ ✮ ✯ ✰ ➔ ➘ ➙ ➚ ➛ ➜ ➝ ➞ ➟ ➠ ➡ ➢ ➣ ➤ ➥ ➦ ➧ ➨ ➩ ➪ ➫ ➬ ➭ ➮ ➯ ➱ ➲ ➳ ➴ ➵ ➶ ➷ ➸ ➹ ➺ ➻ ➼ ➽ ➾ ❢ ❣ ❤ ❥ ❦ ❧ ✌ ✍ ✎ ✏ ✐ ✁ ✂ ✃ ✄ ✓ ✔ ✕ ✖ ✗ ✘ ✉ ✆ ✈ ✻ ✼ ✽ ✾ ✿ ❀ ❁ ❂ ❃ ❄ ❅ ❆ ❇ ❈ ❉ ❊ ❋
Wikipedia有更多字符可以查看使用.
CSS
ID and CLASS ————-
make a TOC
Centering things
centering images with CSS
#for_some_div img {display: block; margin-left:auto; margin-right:auto;}
center a table or div
table { margin: auto; }
Add border and shadow to div
#div_id elem
{
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
}