当前位置: 首页 > article >正文

html/css中用float实现的盒子案例

运行效果:

代码部分:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
	.father{width:300px; height:400px; background:gray;}
	.box1{width:100px; height:100px; background:red;}
	.box2{width:100px; height:100px; background:blue;float:right;}
	.box3{width:200px; height:100px; background:green;}	
	.box4{width:100px; height:200px; background:yellow;float:right;}
	.f1{width:200; height:100px}
	.f2{width:200px; height:200px;}
	.c{margin:0 auto}
</style>
</head>
<body>

	<div class="father c">
	  <div class="box4">44444</div>
			<div class="f2">
				<div class="f1">
				<div class="box2">22222</div>
				<div class="box1">11111</div>
				</div>
			<div class="box3">33333</div>
		</div>
	</div>
</body>
</html>


http://www.kler.cn/a/156690.html

相关文章:

  • Java结合ElasticSearch根据查询关键字,高亮显示全文数据。
  • Thread类及常见方法
  • 第一个 Flutter 项目(1)共46节
  • 比ChatGPT更酷的AI工具
  • 【最新版】Stable Diffusion4.9(AI绘画)下载及安装教程(附软件安装包)!
  • WebGIS三维地图框架--Cesium
  • virtualbox上win7企业微信CPU高问题
  • 企业微信协议开发,API接口调用
  • 大数据基础设施搭建 - 数据装载
  • C++ 系列 第五篇 C++ 算术运算符及类型转换
  • ClickHouse入门手册1.0
  • GO基础之变量与常量
  • 专业课:递归非递归中序遍历
  • LeetCode [中等] 二叉树中序—二叉搜索树中第K小的元素
  • 【wvp】测试记录
  • 百度收录批量查询工具,免费SEO优化排名工具
  • 【有ISSN、ISBN号!往届均已完成EI检索】第三届电子信息工程、大数据与计算机技术国际学术会议(EIBDCT 2024)
  • Java BIO、NIO、AIO 有什么区别?
  • git merge和git rebase
  • 原生input实现上传文件
  • Java | 数据一致性校验遇到的时间序列化格式不一致问题如何解决?
  • MySQL 的 NULL 是怎么存储的?
  • 17:00面试,17:06就出来了,问的问题有点变态。。
  • 四、Zookeeper节点类型
  • 【UGUI】sprite精灵的创建与编辑
  • vue3+ts项目中导入组件时报错has no default export