居中
-
HTML通过CSS控制元素上下居中同时左右居中
之前在给阳光房宝做小程序码的时候就需要在微信中上下左右居中,因为平时很少自己写前端,所以搜索了一些前辈的方法 最终我用的是下面这样的代码:
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>阳光房宝小程序</title><style>.container {position: fixed;top: 0;right: 0;bottom: 0;left: 0;text-align: center;font-size: 0;white-space: nowrap;overflow: auto;}.container:after {content: '';display: inline-block;height: 100%;vertical-align: middle;}.dialog {display: inline-block;vertical-align: middle;text-align: left;white-space: normal;}</style></head><body width="100%" height="100%" margin: 0; padding: 0;><div class="container"><div class="dialog"><img src="xiaochengxu.jpg" width="100%"/></div></div></body><script src="http://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script><!--引用最新版腾讯JS--><script>wx.config({debug: false,appId: '***',timestamp: ***,nonceStr: '***',signature: '***',jsApiList: ['updateAppMessageShareData' ,'updateTimelineShareData' // API列表]});//API内容wx.ready(function () { //需在用户可能点击分享按钮前就先调用wx.updateAppMessageShareData({title: '阳光房宝小程序',desc: '阳光城·翡丽公馆项目位于贵州省毕节市中心城区-东城区板块,前靠毕节东客站...',link: 'http://720.gyxlck.com/yangguangfeicui/xcx.php',imgUrl: 'http://720.gyxlck.com/yangguangfeicui/logo.jpg',success: function () {// 设置成功}});});wx.ready(function () { //需在用户可能点击分享按钮前就先调用wx.updateTimelineShareData({title: '阳光房宝小程序', // 分享标题link: 'http://720.gyxlck.com/yangguangfeicui/xcx.php', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致imgUrl: 'http://720.gyxlck.com/yangguangfeicui/logo.jpg', // 分享图标success: function () {// 设置成功}});});</script>可以通过这个链接查看具体效果:http://720.gyxlck.com/yangguangfeicui/xcx.php 而最近通过自己学习,我觉得这样写更直…