首页
IT
登录
6mi
u
盘
搜
搜 索
IT
小标题两侧加横线或背景图片自适应布局实现技巧
小标题两侧加横线或背景图片自适应布局实现技巧
xiaoxiao
2021-12-14
17
方法一:使用背景图
html结构:
<
div
class
=
"tit-bar"
> <
div
class
=
"deg"
>满意度调查</
div
> </
div
>
css结构:
.tit-bar
{
background
:
url(../img/line-bg.png)
repeat-x center
;
margin
:
0
auto
;
padding
:
5
px
0
;
}
.tit-bar
.deg
{
font-size
:
16
px
;
width
:
5
rem
;
text-align
:
center
;
background-color
:
#fff
;
margin
:
0
auto
;
color
:
#ca4b29
;
font-weight
:
700
;
background
:
#fff
url(../img/smile.png)
no-repeat
7
px center
;
height
:
60
px
;
line-height
:
60
px
;
background-size
:
30
px
30
px
;
padding-left
:
30
px
;
}
方法二:使用伪类
html结构:
<
div
class
=
"tit-bar"
> <
div
class
=
"deg"
>满意度调查</
div
> </
div
>
css结构:
.tit-bar
.deg
{
width
:
100
%
;
font-size
:
16
px
;
color
:
#555
;
margin
:
0
auto
;
position
:
relative
;
text-align
:
center
}
.tit-bar
.deg
::before
{
content
:
""
;
border-top
:
1
px solid
#ccc
;
display
:
block
;
position
:
absolute
;
width
:
40
%
;
top
:
10
px
;
left
:
0
}
.tit-bar
.deg
::after
{
content
:
""
;
border-top
:
1
px solid
#ccc
;
display
:
block
;
position
:
absolute
;
width
:
40
%
;
top
:
10
px
;
right
:
0
}
转载请注明原文地址: https://ju.6miu.com/read-969334.html
专利
最新回复
(
0
)