2015年5月17日 星期日

w3school-CSS

CSS Syntax : Syntax  p {property : value ; property : value}

CSS Selector

CSS three way to insert CSS
  • External Style Sheet : <link rel="stylesheet" type="text/css href="mystyle.css">
  • Internal Style Sheet  :  p{color : red}
  • Inline Styles : <h1 style="color : red"> 



CSS Background
Background Color body{background-color : #b0c4de;}
Background Image body{background-image : url("bkImage.png");}
Background Image Repeat background-repeat : repeat-x;
Background Image no repeat background-repeat : no-repeat
Background Image Position background-position : right top ;
Background ShortHand Property : background : #ffffff url("pic.jpg") repeat-x;
Background fixed : background-attachment : fixed;


CSS Text

  • color 
    • color : red  
    • color : #ffffff  
    • color : rgb(122,255,255);
  • Alignment
    • text-align : left;
    • text-align : center;
    • text-align : justify;    (each line have same width)
  • decoration   (線)
    • text-decoration : overline;
    • text-decoration : none;  (通常用來移除超連結的線)
    • text-decoration : line-through;
    • text-decoration : underline;
  • Transformation
    • text-transformation : uppercase;
    • text-transformation : lowercase;
    • text-transformation : capitalize;
  • Identation (第一行的留白寬度)
    • text-ident : 50px;
  • space between characters : letter-spacing : -3px;
  • space between lines : line-height : 70%;
  • direction
    • direction : rtl; (從右邊長出來)
    • uinicode-bidi : bidi-override;  (方向相反)
  • increase the white space between the words : word-spacing : 30px;
  • disable wrapping :  white-space : nowrap;  (不自動換行)
  • text shadow : text-shadow : 2px 2px #FF0000   (水平,垂直,顏色)
CSS Font
CSS Links

  • color : #FF0000;
  • state :
    • link : a:link{color:#FF0000;}
    • visited : a:visited{#00FF00;}
    • hover  :  a:hover{#000000}
    • active :   a:active{#0000FF;}
  • create link box

CSS Lists



CSS Box Model

  • width
  • padding
  • border
  • margin

CSS border

  • margin-top : 10px;
  • margin-bottom : 10px;
  • margin-left : 10px;
  • margin-right : 10px;
  • shorthand :  margin : 10px  15px;  (上下10px, 左右15px)
CSS Display and Visibility


CSS Positioning
Fixed : position : fixed;   (不管卷軸怎麼動,都會在那裏)
Relatived : position : relative;  (相對原本位置移動)
Absolute : position : absolute;
Overlapping Element : z-index : -1;
Set the shape of element : clip : rect(10px,90px,10px,10px);
overflow : scroll  /  hidden / auto  ;
change the cursor : cursor : pointer;
clear : clear : both;     //利用<h1> 把float 關掉,達到換行


CSS Align
Center Aligning Using the margin Property margin-left : auto;  / margin-right : auto;
Left and Right Aligning Using the position Property : position:absolute; / right:0px;












2015年5月14日 星期四

w3school-Bootstrap


CDN


1、add the HTML doctype : 
  • <!Doctype html>
  • <meta charset="UTF-8">
2、Bootstrap is mobile first
  • <meta name="viewport" content = width="device-width",initial-scale=1 >

3、containers




Bootstrap Grid System   12columns
1、class="row"
2、class="col-sm-4"  (最大12)



  • xs (for phones)
  • sm (for tablets)
  • md(for desktop)
  • lg(for larger desktop)


Bootstrap dropdown-toggle
class="btn btn-primary dropdown-toggle"
data-toggle="dropdown"
Menu<span class="caret"></span>
<ul class="dropdown-menu role="menu"" >



Bootstrap Table


Bootstrap Image















2015年5月12日 星期二

W3school-HTML


Title Attribution
href Atrribution
Size Atrribution
HTML Heading
HTML Horizontal Line
<pre> poem
background-color:lightgray
Text Color color:blue
HTML font  font-family:courier
Text Size  font-size:200%
Text Align text-align:center
Blod<b> Strong<strong>
Marked <mark>
deleted line <del>
underLine <ins>
Bi-Directional Override <bdo dir="rtl">

CSS border
CSS padding
CSS margin
CSS id
CSS class

HTML Link : colors and Icons
HTML Link : Target Atrribution
HTML Link : Image as links
HTML LinK : id as link   


HTML Image : Width Height or Style?
HTML Image : Image on Another Server
HTML Image : Image Maps
HTML Image : Image Floating


HTML Table  :  Defining <table> <tr> <td>
HTML Table  :  CSS Border border : 1px solid black
HTML Table  :  CSS collapse border  border-collapse : collapse
HTML Table  :  padding   padding : 20px
HTML Table  :  Table headings  <th>
HTML Table  :  Align  text-align: left
HTML Table  :  Border space  border-spacing : 2px
HTML Table  :  span colunms colspan="2"
HTML Table  :  span rows  rowspan="2"
HTML Table  :  caption  <caption>
HTML Table  :  id CSS table#id{  }
HTML Table  :  odd even style table#t01 tr:nth-child(odd)

HTML Lists  :  unordered Lists  <ul>  <li>
HTML Lists  :  unordered Lists Style Attribution  list-style-type : circle
HTML Lists  :  ordered Lists  <ol> <li>  type= "1"
HTML Lists  :  description Lists <dl> <dt> <dd>
HTML Lists  :  nested Lists
HTML Lists  :  Horizontal Lists  ul#id li {display:inline }
HTML Lists  :  Horizontal Lists style Attribution

  • background-color : black
  • padding : 10px 20px 
  • text-decoration : none  (無超連結底線)
  • border-radius  :  10px 10px 30px 30px
HTML Lists  :  hover    ul#id li a :hover {background-color : orange }




HTML Blocks : <div>
HTML Blocks : <span>

HTML Class  :  Class   .classname{}
HTML Class  :  Classing inline Elements  span.classname { }

HTML Layouts  :  layout using <div>



HTML Responsive :  using float  float : left
HTML Responsize  :  using Bootstrap


HTML iframe : display web in web  <iframe src="URL"></iframe>
HTML iframe : set Height and Width
HTML iframe : remove the border  style="border : none"
HTML iframe : change the border   style="border : 5px dotted red"
HTML iframe : Target for a link

  1. <iframe src="www.google.com" name="iframe_a"></iframe>
  2. <p><a href="www.yahoo.com.tw" target="iframe_a" >yahoo</a></p>

  • style="background-color : #FFFF00"
  • style="background-color : rgb(255,255,0)"
  • style="background-color : yellow"
HTML Scripts : change content  document.getElementById("Id").innerHTML = "OK";
HTML Scripts : change style    document.getElementById("Id").style.fontsize = "25px";


HTML symbol   <p>I will display &x20AC</p>



HTML form  :  input 

  • text
  • radio
  • submit  <form action="url">  <input type="submit">  </form>


HTML form  :  action   

  • method="GET"     傳送資料會出現在網址
  • method="POST"   傳送資料不會出現在網址
HTML form  :  name Attribution  input 要有 name 才會傳




HTML Input: