需求分析:當頁面內容小於裝置螢幕的高度時,底部footer部分固定在螢幕底部,當頁面內容超出螢幕高度時,底部footer部分隨頁面變動,始終在頁面的底部。
flex布局實現
html部分
body>
css部分
html,body,header,footer,section,div,p
html
body
相容布局實現
html 部分
class="detail">
class="detail-main">div>
div>
class="detail-close">
class="icon-close">
div>
div>
css部分
.detail
}.detail-close
}
Python實現經典排序演算法
import random lis list range 100 random.shuffle lis print lis def bubblesort arr for i in range 1 len arr for j in range 0 len arr i if arr j arr j 1 ...
Python 實現經典排序演算法
穩定的排序演算法 氣泡排序 插入排序 歸併排序和基數排序。不是穩定的排序演算法 選擇排序 快速排序 希爾排序 堆排序。a 80,15,45,35,88,46,55,66,22,99,0,1,100 for j in range 0,len a for i in range 0,len a 1 if ...
Java實現經典八皇后的問題
今天自己實現了八皇后的問題,其實 並不長,但是關於虛擬機器中怎樣實現的想了好長時間特別是紅色部分。現在還是有點不是很明白。如下,已經實現執行。public class eightqueen 檢查所放位子是否合法。public static boolean check int row for int ...