2016年11月29日 星期二

CSS語法

//外部呼叫
<link rel=stylesheet type="text/css" href="my_css.css">

//宣告方法
元件標籤{樣式性質:設定值}
element{property:value}

<style type="text/css">
body{font-size:9pt}
</style>

//網頁div置中
<div style="margin: 0px auto;"></div>

2016年11月9日 星期三

Rails Bootstrap安裝

**GemFile內新增
gem 'bootstrap-sass'

**安裝
bundle install

**import bootstrap
**app/assets/stylesheets/application.css
@import "bootstrap-sprockets"; // 放 bootstrap 前
@import "bootstrap";

**修改副檔名成scss
app/assets/stylesheets/application.css
change to 
app/assets/stylesheets/application.scss

**加入javascript
**app/assets/javascripts/application.js

//= require jquery
//= require bootstrap-sprockets

2016年10月25日 星期二

參考資料

https://laraveltw.hackpad.com/-Laravel--VFAy2gCePxn
Ruby on Rails指南

http://rails.ruby.tw/

Ruby教學
https://gradyli.wordpress.com/ruby%E6%95%99%E5%AD%B8/

Ruby on Rails實戰聖經
https://ihower.tw/rails/

Rails101s
http://rails101s.logdown.com/archives

好麻煩
http://blog.gogojimmy.net/

RVM
http://railsfun.tw/t/rvm/28

RailsBridge
http://zh-tw.railsbridge.org/docs/

好麻煩
http://gogojimmy.net/

wibibi網頁設計
http://www.wibibi.com/

w3schools
http://www.w3schools.com/tags/tag_title.asp


FOR JAVA
https://openhome.cc/Gossip/index.html
http://programming.im.ncnu.edu.tw/J_index.html
JAVA SWING
http://yhhuang1966.blogspot.tw/2014/05/java-swing_18.html

演算法
http://www.csie.ntnu.edu.tw/~u91029/AlgorithmDesign.html#9