CSS
物件位置
https://sites.google.com/site/coolteazhuanti/css/qiang-zhi-shui-ping-pai-lie-bu-huan-xing
http://css-teach.7happy.com.tw/css-position.php
https://muki.tw/tech/css-div-center/
文字效果
import方式
https://blog.xuite.net/han31079/b747/13869483-CSS%E5%9F%BA%E7%A4%8E%E8%AA%8D%E8%AD%98
滑動確認按鈕
https://www.wfublog.com/2018/01/css-slide-on-off-swith.html
[CSS] 圖片在div內水平置中
http://stockwfj3.pixnet.net/blog/post/116998882
超連結語法
https://blog.xuite.net/han31079/b747/13940573-%E5%9F%BA%E6%9C%AC%E9%80%A3%E7%B5%90%E8%AA%9E%E6%B3%95
常用語法
至底區域
https://www.w3schools.com/howto/howto_css_fixed_footer.asp
DIV內元素置底
第一層DIV設定 :position:relative;
第二層DIV設定
http://zackwang.blogspot.com/2015/10/cssdiv.html
margin vs padding
內距:元素與邊框的距離
外距:元素間的間距
https://pinkyvivi.pixnet.net/blog/post/1131260
display:block 與 display:inline
display:block - 區塊,元素會以區塊方式呈現,除非設定 position 或 float。 block 的特性是可以設定高度(height)、寬度(width)、上方與下方距離,像是 div、p、ul、li 均屬 block。
display:inline - 所有文字或圖片均不換行,也就是全部都會是同一行的意思。inline 高度與寬度都不能設定,文字或圖片所佔的寬度就是他的寬度,像是 span、a、input、img、em 均屬 inline。
Last updated