在77ISP学技术
每日笔记,导航实例,实例并排浮动框,css并排浮动框,css浮动框框实
导航菜单
将 float 与超链接列表一起使用,来创建水平菜单:
实例
Web 布局实例
使用 float 属性完成整个 Web 布局也很常见:
.header, .footer { background-color: grey; color: white; padding: 15px; } .column { float: left; padding: 15px; } .clearfix::after { content: ""; clear: both; display: table; } .menu { width: 25%; } .content { width: 75%; }
Shanghai
The City
Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to Shanghai!
You will learn more about web layout and responsive web pages in a later chapter.
属性 |
描述 |
box-sizing | 定义元素的宽度和高度的计算方式:它们是否应包含内边距和边框。 |
clear | 指定哪些元素可以在被清除的元素旁边以及在哪一侧浮动。 |
float | 指定元素应如何浮动。 |
overflow | 指定如果内容溢出元素框会发生什么情况。 |
overflow-x | 指定当溢出元素的内容区域时,如何处理内容的左/右边缘。 |
overflow-y | 指定当溢出元素的内容区域时,如何处理内容的上/下边缘。 |
相关文章
标签:css