1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*========發噗區-第一個噗寶(會在文字上,可放到任何地方)========*/
.dash-segment-post:before {
/*這行不用動*/ display:block; position:absolute;
/*擋住輸入框*/ z-index:0; /*改成1擋住,改成0不擋住,刪除這行不擋住*/
/*上下位置*/ bottom:-2px; /*可改top*/
/*左右位置*/ right:25px; /*可改left*/
/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
/*圖片*/ content:url(網址);
}

/*========發噗區-第二個噗寶(會在文字上,可放到任何地方)========*/
.dash-segment-post:after {
/*這行不用動*/ display:block; position:absolute;
/*擋住輸入框*/ z-index:0; /*改成1擋住,改成0不擋住,刪除這行不擋住*/
/*上下位置*/ bottom:-2px; /*可改top*/
/*左右位置*/ right:25px; /*可改left*/
/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
/*圖片*/ content:url(網址);
}