5月8日上課筆記-浮動float
阿新 • • 發佈:2017-06-21
:after 塊級元素 字節流 add hidden span 浮動 spl content
IO文件復制 字符流(只能對文本文件進行操作) Reader Writer 字節流(對所有文件都能操作) InputStream OutputStream 一.浮動 邊框弧度 border-radius: 20px 10px 50px 30px; 弧度畫圓形 長寬一樣 border-radius:50% 盒子陰影: box-shadow: 浮動float: 1、display none //隱藏 block //顯示塊級元素 inline //顯示為內聯元素 inline-block // 既有內聯元素也有塊元素 2、float 浮動 left 左浮動 right 右浮動 none 清除浮動: clear:both; //清除左右浮動 解決父類邊框塌陷: a.放入一個空div設置樣式: clear: both; margin:0; padding: 0; b.設定父類邊框的高度: c.設定父類邊框: overflow:hidden; d.父級加偽類after .clear:after{ content: ‘‘; /*在clear類後面添加內容為空*/ display: block; /*把添加的內容轉化為塊元素*/ clear: both; /*清除這個元素兩邊的浮動*/ }
5月8日上課筆記-浮動float