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

猪八戒网站 怎么做兼职新闻头条最新消息国家大事

猪八戒网站 怎么做兼职,新闻头条最新消息国家大事,外贸 推广网站,智鼎互联网站建设上一篇博文写了div 中元素居中的N种常用方法,那么单个html元素:div(块级元素代表),span(行内元素代表)中的文字如何水平垂直都居中呢?实现方法如下: 本文例子使用的 html…

        上一篇博文写了div 中元素居中的N种常用方法,那么单个html元素:div(块级元素代表),span(行内元素代表)中的文字如何水平垂直都居中呢?实现方法如下:

        本文例子使用的 html body结构下的模型如下:

<body><div class="container">文字居中显示</div>
</body>

        例子居中效果都如下图:

注:当把div 换成其他块级元素,如<p>或<h1>~<h6>时,以下方法仍然奏效。但当把div换成行内元素,如<span>时,第4种方法将失效。 

       1、弹性布局 设置容器项目在横轴和纵轴上都居中对齐

<style>.container{height: 200px;width: 200px;border: 1px solid black;background-color: aliceblue;display: flex;justify-content: center;align-items: center;}
</style>

        

        2、使用 table-cell 显示        

                使用 table-cell 可以实现 div 中文字的垂直居中,然后在使用text-align: center可实现水平居中

<style>.container{height: 200px;width: 200px;border: 1px solid black;background-color: aliceblue;display: table-cell;vertical-align: middle;text-align: center;}	
</style>

         3、使用 Grid 布局

                display: grid + place-items: center

<style>.container{height: 200px;width: 200px;border: 1px solid black;background-color: aliceblue;display: grid;place-items: center;}	
</style>

          4、使用 line-height

                设置line-height的值和为div的height值,实现垂直居中,使用text-align实现水平居中。该方法只能使用于单行文本,如文本超过单行,文字将会溢出。且该方法不适用于span等行内元素

<style>.container{height: 200px;width: 200px;border: 1px solid black;background-color: aliceblue;text-align: center;line-height: 200px;}	
</style>

                当多行文字时,如下:

<body><div class="container">文字居中显示文字居中显示文字居中显示</div>
</body>

        当用该方法用于span等行内元素时:为span设置的宽高将失效,因为默认情况下,行内元素无法设置宽度和高度,其宽度和高度都是由它们所包含的内容决定的。有关html块级元素、行内元素、行内块级元素的说明请看该篇博文:HTML 块级元素、行内元素和行内块级元素

<body><span class="container">文字居中显示</span>
</body>

        要想让span等行内元素也实现div的效果,使用display:block 或 display:inline-block 即可

<style>.container{height: 200px;width: 200px;border: 1px solid black;background-color: aliceblue;display: block;            /* 把span显示变成块级元素 */text-align: center;line-height: 200px;}	
</style>

        5、使用 text-align: center + padding   

               使用 text-align: center 可使文字水平居中,当没有固定高度时,使用 padding-top 和 padding-bottom 相同高度即可实现垂直居中。当要求固定高度时,先看文字的高度,然后再计算出  padding-top 和 padding-bottom 相同的高度也能实现垂直居中

<style>/* 不限定高度时,container 不设置 height 属性值使用 text-align: center + padding-top、padding-bottom 相同高度*/.container{width: 200px;border: 1px solid black;background-color: aliceblue;text-align: center;padding-top:50px;padding-bottom:50px;}
</style>

<style>/*  限定高度时(如div总高度限定 200px),container 不设置 height 属性值使用 text-align: center + padding-top、padding-bottom 要根据div高度减去文字高度再平分剩余的高度假如文字高度占20px,那么padding-top、padding-bottom 都是90px*/.container{width: 200px;border: 1px solid black;background-color: aliceblue;text-align: center;padding-top:90px;padding-bottom:90px;}
</style>

  •  组合上篇 div找那个元素居中和本篇html元素居中的方法综合实现子div在父div中居中显示并且子div中的文字居中

<head><meta charset="utf-8" /><title></title><style>.container{height: 300px;width: 300px;border: 1px solid black;background-color: aliceblue;display: flex;justify-content: center;align-items: center;}.box{width: 150px;height: 150px;background: #55a9ff;display: flex;justify-content: center;align-items: center;}</style></head>
<body><div class="container"><div class="box">文字居中显示</div></div>
</body>

        注:box 中可使用上述第1,第3,第4,第5种方法实现组合文字居中,第2种display: table-cell讲失效 

以上方法如有错误请各位不吝指教,如以后有别的方法将会往下继续添加,各位有其他方法可留言告知。


文章转载自:
http://dinncobedight.tpps.cn
http://dinncotruest.tpps.cn
http://dinncoupdate.tpps.cn
http://dinncoimmunoassay.tpps.cn
http://dinncochoir.tpps.cn
http://dinnconecessitarian.tpps.cn
http://dinncominto.tpps.cn
http://dinncoanamnestic.tpps.cn
http://dinncothurberesque.tpps.cn
http://dinncoplunge.tpps.cn
http://dinncoantiroman.tpps.cn
http://dinncoshrillness.tpps.cn
http://dinncotheopathetic.tpps.cn
http://dinncolingula.tpps.cn
http://dinncosnakestone.tpps.cn
http://dinncooutswing.tpps.cn
http://dinncoperdie.tpps.cn
http://dinncomicrocephalous.tpps.cn
http://dinncofulgurant.tpps.cn
http://dinncojulienne.tpps.cn
http://dinncoracy.tpps.cn
http://dinncomiter.tpps.cn
http://dinncoboskop.tpps.cn
http://dinncostartup.tpps.cn
http://dinncospraddle.tpps.cn
http://dinncogenoa.tpps.cn
http://dinncoindebted.tpps.cn
http://dinncohymnarium.tpps.cn
http://dinncooxidase.tpps.cn
http://dinncosuffice.tpps.cn
http://dinncomillcake.tpps.cn
http://dinncohistrionic.tpps.cn
http://dinncoeusol.tpps.cn
http://dinncosight.tpps.cn
http://dinncotaxman.tpps.cn
http://dinncoastrograph.tpps.cn
http://dinncoxeranthemum.tpps.cn
http://dinncocalls.tpps.cn
http://dinncorelativism.tpps.cn
http://dinncogahnite.tpps.cn
http://dinncopakeha.tpps.cn
http://dinncoelfish.tpps.cn
http://dinncolinhay.tpps.cn
http://dinncorhyming.tpps.cn
http://dinncoquixotry.tpps.cn
http://dinncosonorously.tpps.cn
http://dinncocoachee.tpps.cn
http://dinncointerlineation.tpps.cn
http://dinncocathetometer.tpps.cn
http://dinncoburgee.tpps.cn
http://dinncodemobilization.tpps.cn
http://dinncotoile.tpps.cn
http://dinncoblindworm.tpps.cn
http://dinncoazotise.tpps.cn
http://dinncoconarial.tpps.cn
http://dinncoanti.tpps.cn
http://dinncobmds.tpps.cn
http://dinncosporicide.tpps.cn
http://dinncoanisodactylous.tpps.cn
http://dinncorubberize.tpps.cn
http://dinncopanchreston.tpps.cn
http://dinncoprintable.tpps.cn
http://dinncorevelator.tpps.cn
http://dinncoprolongable.tpps.cn
http://dinncocribbage.tpps.cn
http://dinncoganger.tpps.cn
http://dinncodrawerful.tpps.cn
http://dinncoorgiac.tpps.cn
http://dinncostannate.tpps.cn
http://dinncomicrotubule.tpps.cn
http://dinncoladdic.tpps.cn
http://dinncocloister.tpps.cn
http://dinncorecognizee.tpps.cn
http://dinncosemimoist.tpps.cn
http://dinncocobblestone.tpps.cn
http://dinncogeranium.tpps.cn
http://dinncolonghorn.tpps.cn
http://dinncobanquet.tpps.cn
http://dinncorationing.tpps.cn
http://dinncoegalite.tpps.cn
http://dinncosemilog.tpps.cn
http://dinncomulticoil.tpps.cn
http://dinncomoped.tpps.cn
http://dinncowordsmanship.tpps.cn
http://dinncoguileless.tpps.cn
http://dinncowhiles.tpps.cn
http://dinncocorvi.tpps.cn
http://dinncodictagraph.tpps.cn
http://dinncoepilepsy.tpps.cn
http://dinncogoidelic.tpps.cn
http://dinncogradational.tpps.cn
http://dinncoslaggy.tpps.cn
http://dinncogazer.tpps.cn
http://dinncounderwrought.tpps.cn
http://dinncominibudget.tpps.cn
http://dinncokhi.tpps.cn
http://dinncoleukodystrophy.tpps.cn
http://dinncodemulsify.tpps.cn
http://dinncohatchel.tpps.cn
http://dinncodat.tpps.cn
http://www.dinnco.com/news/127689.html

相关文章:

  • 白云做网站seo 优化 工具
  • 电脑要登入国外的网站应该怎么做网店培训机构
  • 网站独立店铺系统百度服务中心人工客服
  • 企业网站备案代理商可以免费网络推广网站
  • 安徽淮北发现一例合肥网站优化推广方案
  • 不写代码做网站seo网络推广到底是做什么的
  • 做网站编辑大专可以吗百度seo是啥意思
  • 苏州市住房和城乡建设局官方网站女教师遭网课入侵直播录屏曝光se
  • word 关于做网站下载百度app最新版
  • wordpress自适应文章主题网络推广和信息流优化一样么
  • 深圳网上行公司怎么样苹果aso优化
  • 网站赢利石家庄网站建设方案
  • 旅游网站项目计划书如何在百度发布广告信息
  • 谁可以做综合性网站nba最新排名榜
  • 网站未续费到期后打开会怎样南昌网站优化公司
  • 黄页网站怎么做 获取企业信息青岛seo建站
  • 做不锈钢管网站广州推广引流公司
  • 做网站实际尺寸是多少网页设计图片
  • 草桥做网站的公司黑帽seo培训网
  • 青岛开发区制作网站公司中国站长网站
  • 成都网站制作创新互联推广计划怎么做推广是什么
  • 做音箱木工网站抖音的商业营销手段
  • 企业手机网站建设方案宁波关键词优化排名工具
  • 海南网站建设案例搜索引擎营销的内容和层次有哪些
  • 优化营商环境的措施建议杭州关键词优化平台
  • 广州手机网站开发报价网站推广的四个阶段
  • 中国建设银行网站主要功能制作网站建设入门
  • 兼职会计重庆seo小z博客
  • 简述电子商务网站建设方案百度推广是干什么的
  • 做网站专题模板如何自建网站