how2j.cn

步骤 1 : 效果   
步骤 2 : 布局   
步骤 3 : 纯html   
步骤 4 : 加上样式   
步骤 5 : 样式讲解   
步骤 6 : 再整合在一起   

<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> </head> <style> body,table{ font-size: 12px; font-family: Arial; } div.confirmPayPageDiv{ max-width: 1013px; margin: 10px auto; } div.confirmPayImageDiv{ margin:5px auto 80px auto; width: 900px; position: relative; } div.confirmPayImageDiv div{ color: #999999; } div.confirmPayTime3{ position: absolute; top: 100px; left: 400px; } div.confirmPayTime2{ position: absolute; top: 100px; left: 190px; } div.confirmPayTime1{ position: absolute; top: 100px; left: -20px; } div.confirmPayOrderInfoText{ margin: 10px 10px 0px 10px; font-size: 16px; font-weight: bold; color: black; padding-bottom: 15px; border-bottom: 1px solid #ADC8E6; } div.confirmPayOrderItemDiv{ margin: 0px 20px; } div.confirmPayOrderItemText{ margin: 20px 10px; font-size: 14px; font-weight:normal; color: black; } table.confirmPayOrderItemTable{ border: 1px solid #DDDDDD; width: 100%; } table.confirmPayOrderItemTable thead{ background-color: #E8F2FF; height: 33px; } table.confirmPayOrderItemTable tr{ border: 1px solid #DDDDDD; } table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td{ text-align: center; } table.confirmPayOrderItemTable td{ padding: 20px; } td.confirmPayOrderItemProductLink{ text-align: left !important; } span.conformPayProductPrice{ font-size: 18px; font-weight: bold; color: #666666; } span.confirmPayOrderItemSumPrice{ color: #C40000; } a{ color:#999; } a:hover{ text-decoration:none; color: #C40000; } </style> <div class="confirmPayPageDiv"> <div class="confirmPayImageDiv"> <img src="https://how2j.cn/tmall/img/site/comformPayFlow.png"> <div class="confirmPayTime1"> 2016-09-14 11:14:45 </div> <div class="confirmPayTime2"> 2016-09-14 11:14:47 </div> <div class="confirmPayTime3"> yyyy-MM-dd HH:mm:ss </div> </div> <div class="confirmPayOrderInfoDiv"> <div class="confirmPayOrderInfoText">我已收到货,同意支付宝付款</div> </div> <div class="confirmPayOrderItemDiv"> <div class="confirmPayOrderItemText">订单信息</div> <table class="confirmPayOrderItemTable"> <thead> <tr><th colspan="2">宝贝</th> <th width="120px">单价</th> <th width="120px">数量</th> <th width="120px">商品总价 </th> <th width="120px">运费</th> </tr></thead> <tbody><tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/5848.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">罗宾 钢带女表 女士腕表 水钻夜光防水石英表 潮流时尚复古手表女</a> </td> <td>¥990.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥792.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> <tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/3676.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">科沃斯地宝凌云扫地机器人WiFi智能家用吸尘器超薄全自动洗擦地机</a> </td> <td>¥5,680.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥3,692.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> </tbody></table> <div class="confirmPayOrderItemText pull-right"> 实付款: <span class="confirmPayOrderItemSumPrice">¥4,484.00</span> </div> </div> </div>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
布局
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
运行效果
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> </head> <div class="confirmPayPageDiv"> <div class="confirmPayImageDiv"> <img src="https://how2j.cn/tmall/img/site/comformPayFlow.png"> <div class="confirmPayTime1"> 2016-09-14 11:14:45 </div> <div class="confirmPayTime2"> 2016-09-14 11:14:47 </div> <div class="confirmPayTime3"> yyyy-MM-dd HH:mm:ss </div> </div> <div class="confirmPayOrderInfoDiv"> <div class="confirmPayOrderInfoText">我已收到货,同意支付宝付款</div> </div> <div class="confirmPayOrderItemDiv"> <div class="confirmPayOrderItemText">订单信息</div> <table class="confirmPayOrderItemTable"> <thead> <tr><th colspan="2">宝贝</th> <th width="120px">单价</th> <th width="120px">数量</th> <th width="120px">商品总价 </th> <th width="120px">运费</th> </tr></thead> <tbody><tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/5848.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">罗宾 钢带女表 女士腕表 水钻夜光防水石英表 潮流时尚复古手表女</a> </td> <td>¥990.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥792.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> <tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/3676.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">科沃斯地宝凌云扫地机器人WiFi智能家用吸尘器超薄全自动洗擦地机</a> </td> <td>¥5,680.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥3,692.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> </tbody></table> <div class="confirmPayOrderItemText pull-right"> 实付款: <span class="confirmPayOrderItemSumPrice">¥4,484.00</span> </div> </div> </div>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
运行效果
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> </head> <style> body,table{ font-size: 12px; font-family: Arial; } div.confirmPayPageDiv{ max-width: 1013px; margin: 10px auto; } div.confirmPayImageDiv{ margin:5px auto 80px auto; width: 900px; position: relative; } div.confirmPayImageDiv div{ color: #999999; } div.confirmPayTime3{ position: absolute; top: 100px; left: 400px; } div.confirmPayTime2{ position: absolute; top: 100px; left: 190px; } div.confirmPayTime1{ position: absolute; top: 100px; left: -20px; } div.confirmPayOrderInfoText{ margin: 10px 10px 0px 10px; font-size: 16px; font-weight: bold; color: black; padding-bottom: 15px; border-bottom: 1px solid #ADC8E6; } div.confirmPayOrderItemDiv{ margin: 0px 20px; } div.confirmPayOrderItemText{ margin: 20px 10px; font-size: 14px; font-weight:normal; color: black; } table.confirmPayOrderItemTable{ border: 1px solid #DDDDDD; width: 100%; } table.confirmPayOrderItemTable thead{ background-color: #E8F2FF; height: 33px; } table.confirmPayOrderItemTable tr{ border: 1px solid #DDDDDD; } table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td{ text-align: center; } table.confirmPayOrderItemTable td{ padding: 20px; } td.confirmPayOrderItemProductLink{ text-align: left !important; } span.conformPayProductPrice{ font-size: 18px; font-weight: bold; color: #666666; } span.confirmPayOrderItemSumPrice{ color: #C40000; } a{ color:#999; } a:hover{ text-decoration:none; color: #C40000; } </style> <div class="confirmPayPageDiv"> <div class="confirmPayImageDiv"> <img src="https://how2j.cn/tmall/img/site/comformPayFlow.png"> <div class="confirmPayTime1"> 2016-09-14 11:14:45 </div> <div class="confirmPayTime2"> 2016-09-14 11:14:47 </div> <div class="confirmPayTime3"> yyyy-MM-dd HH:mm:ss </div> </div> <div class="confirmPayOrderInfoDiv"> <div class="confirmPayOrderInfoText">我已收到货,同意支付宝付款</div> </div> <div class="confirmPayOrderItemDiv"> <div class="confirmPayOrderItemText">订单信息</div> <table class="confirmPayOrderItemTable"> <thead> <tr><th colspan="2">宝贝</th> <th width="120px">单价</th> <th width="120px">数量</th> <th width="120px">商品总价 </th> <th width="120px">运费</th> </tr></thead> <tbody><tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/5848.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">罗宾 钢带女表 女士腕表 水钻夜光防水石英表 潮流时尚复古手表女</a> </td> <td>¥990.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥792.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> <tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/3676.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">科沃斯地宝凌云扫地机器人WiFi智能家用吸尘器超薄全自动洗擦地机</a> </td> <td>¥5,680.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥3,692.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> </tbody></table> <div class="confirmPayOrderItemText pull-right"> 实付款: <span class="confirmPayOrderItemSumPrice">¥4,484.00</span> </div> </div> </div>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
步骤 6 :

再整合在一起

edit
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
运行效果
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> </head> <style> body,table{ font-size: 12px; font-family: Arial; } div.confirmPayPageDiv{ max-width: 1013px; margin: 10px auto; } div.confirmPayImageDiv{ margin:5px auto 80px auto; width: 900px; position: relative; } div.confirmPayImageDiv div{ color: #999999; } div.confirmPayTime3{ position: absolute; top: 100px; left: 400px; } div.confirmPayTime2{ position: absolute; top: 100px; left: 190px; } div.confirmPayTime1{ position: absolute; top: 100px; left: -20px; } div.confirmPayOrderInfoText{ margin: 10px 10px 0px 10px; font-size: 16px; font-weight: bold; color: black; padding-bottom: 15px; border-bottom: 1px solid #ADC8E6; } div.confirmPayOrderItemDiv{ margin: 0px 20px; } div.confirmPayOrderItemText{ margin: 20px 10px; font-size: 14px; font-weight:normal; color: black; } table.confirmPayOrderItemTable{ border: 1px solid #DDDDDD; width: 100%; } table.confirmPayOrderItemTable thead{ background-color: #E8F2FF; height: 33px; } table.confirmPayOrderItemTable tr{ border: 1px solid #DDDDDD; } table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td{ text-align: center; } table.confirmPayOrderItemTable td{ padding: 20px; } td.confirmPayOrderItemProductLink{ text-align: left !important; } span.conformPayProductPrice{ font-size: 18px; font-weight: bold; color: #666666; } span.confirmPayOrderItemSumPrice{ color: #C40000; } a{ color:#999; } a:hover{ text-decoration:none; color: #C40000; } </style> <div class="confirmPayPageDiv"> <div class="confirmPayImageDiv"> <img src="https://how2j.cn/tmall/img/site/comformPayFlow.png"> <div class="confirmPayTime1"> 2016-09-14 11:14:45 </div> <div class="confirmPayTime2"> 2016-09-14 11:14:47 </div> <div class="confirmPayTime3"> yyyy-MM-dd HH:mm:ss </div> </div> <div class="confirmPayOrderInfoDiv"> <div class="confirmPayOrderInfoText">我已收到货,同意支付宝付款</div> </div> <div class="confirmPayOrderItemDiv"> <div class="confirmPayOrderItemText">订单信息</div> <table class="confirmPayOrderItemTable"> <thead> <tr><th colspan="2">宝贝</th> <th width="120px">单价</th> <th width="120px">数量</th> <th width="120px">商品总价 </th> <th width="120px">运费</th> </tr></thead> <tbody><tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/5848.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">罗宾 钢带女表 女士腕表 水钻夜光防水石英表 潮流时尚复古手表女</a> </td> <td>¥990.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥792.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> <tr> <td><img width="50px" src="https://how2j.cn/tmall/img/productSingle_middle/3676.jpg"></td> <td class="confirmPayOrderItemProductLink"> <a href="#nowhere">科沃斯地宝凌云扫地机器人WiFi智能家用吸尘器超薄全自动洗擦地机</a> </td> <td>¥5,680.00</td> <td>1</td> <td><span class="conformPayProductPrice">¥3,692.00</span></td> <td><span>快递 : 0.00 </span></td> </tr> </tbody></table> <div class="confirmPayOrderItemText pull-right"> 实付款: <span class="confirmPayOrderItemSumPrice">¥4,484.00</span> </div> </div> </div>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2020-03-10 请问,最后 的实付款:¥4484.00在哪设置的?(里面pull right没有定义啊,为什么出现靠右的效果)
wuxianbiao




我自己实现的效果是,看出是一行,然后合并5列。加上text-align:right。但是不能完全靠右是为什么。如果换成text-align:left,则可以完全靠左。
加载中
<tr  ><td  style="text-align: right" colspan="5">实付款:<span style="color:red">¥ 4,484.00</span></td>
<!DOCTYPE html>
<html>
<head>
<!DOCTYPE html>
<script src="jquery.min.js"></script>
<link href="bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" media="screen" href="css/bootstrap.css">
<script src="bootstrap.min.js"></script>
<meta http-equiv="Content-Type" content="text/html";Charset=UTF-8>
</head>
<body>
<style>
br{border:2px solid #AFEEEE;}
span{display:inline:block;margin-right:100px;}

</style>
<div>
<img style="margin-left:25px"src="E:\新建文件夹\demo\site\comformPayFlow.png">
<br>
<span>2016-09-14 11:14:45</span>
<span>2016-09-14 11:14:47</span>
<span>yyyy-MM-dd HH:mm:ss</span>
<span style="font-weight: bold;font-size:14px">我已收到货,同意支付宝付款</span>
<br/>
<div style="margin-left:10px">订单信息</div>
<table style="text-align: center">
<tr style="text-align: center;font-weight: bold;background-color:#AFEEEE;border:1px solid gray ">
<td>宝贝</td><td width="150px">单价</td><td width="150px">数量</td><td width="150px">商品总价</td><td width="150px">运费</td>
</tr>
<tr style="border:1px solid gray">
<td style="text-align: left"><img style="margin:10 10 10 10;width:60px;height:60px;" src="E:\新建文件夹\demo\site\5848.jpg">
<a href=#nowhere style="margin-left:50px">罗宾 钢带女表 女式腕表 水钻夜光防水石英表 潮流复古手表女</a></td>
<td style="color:gray">¥990.00</td>
<td style="color:gray">1</td>
<td style="font-size:16px;font-weight: bold">¥792.00</td>
<td style="color:gray">快递:0.00</td>
</tr>
<tr style="border:1px solid gray">
<td style="text-align: left"><img style="margin:10 10 10 10;width:60px;height:60px;" src="E:\新建文件夹\demo\site\3676.jpg">
<a href=#nowhere style="margin-left:50px">科沃斯地宝凌云扫地机器人WiFi智能家用吸尘器超薄全自动西擦地机</a></td>
<td style="color:gray;text-align: center">¥5680.00</td>
<td style="color:gray;text-align: center">1</td>
<td style="font-size:16px;font-weight: bold;text-align: center">¥3692.00</td>
<td style="color:gray;text-align: center">快递:0.00</td>
</tr>
<tr  ><td  style="text-align: right" colspan="5">实付款:<span style="color:red">¥ 4,484.00</span></td></tr>
</table>

</div>
</body>
</html>


1 个答案

how2j
答案时间:2020-03-10
-_-! 同学,你自己实现的效果,就只能自己解决了, 我确实不可能有精力把你自己写的代码再从头到尾分析一边呢



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2018-10-30 我有一个问题
我会努力学JAVA的




请问站长这个是什么原因呢,是因为bootstrap么,还是thead或者th的原因呢?
//在设置表格居中的时候,站长用的是这个
table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td{
    text-align: center;
}
问题为什么不能在下面这行里面加居中属性呢?
table.confirmPayOrderItemTable{
    border: 1px solid #DDDDDD;
    width: 100%;
text-align:center;//在这里设置的话,th里面的内容还是居左的,td里面的内容都变了,
}

							


2 个答案

Memory_123
答案时间:2019-01-04
写成这样不就行了嘛 table.confirmPayOrderItemTable th,td{ text-align: center; }

how2j
答案时间:2018-10-31
要加在td上,你是加在table 上



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到









提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 实践项目-天猫前端-确认收货页面上 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图