css布局技巧-【文字居中,左右实线】

效果:

css布局技巧-【文字居中,左右实线】_第1张图片
Paste_Image.png

解决方案:

1.html5标签

  
`
        代码:
       css:
       fieldset{
         border: none;
         border-top: 1px solid red;
         text-align: center; 
       }
       legend{
         padding: 0 10px;
       }
       html:
       
健康信息
`

2.div模拟:

代码: css: .title{ position: relative; width: 100%; } .tx-center{ width: 160px; margin: 0 auto; text-align: center; background-color: #fff; font-size: 24px; } html: 
热门点评任务

你可能感兴趣的:(css布局技巧-【文字居中,左右实线】)