

吹き出し(下)
HTML
1 | < div class = "arrow_box" >ふきだしです。</ div > |
CSS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .arrow_box { position : relative ; display : inline-block ; background : #fff ; border : 4px solid #333 ; padding : 30px ; margin : 0 ; } .arrow_box:after, .arrow_box:before { content : "" ; height : 0 ; width : 0 ; position : absolute ; top : 100% ; left : 50% ; border : solid transparent ; } .arrow_box:after { border-color : rgba ( 255 , 255 , 255 , 0 ); border-top-color : #fff ; border-width : 14px ; margin-left : -14px ; } .arrow_box:before { border-color : rgba ( 51 , 51 , 51 , 0 ); border-top-color : #333 ; border-width : 20px ; margin-left : -20px ; } |
吹き出し(上)
HTML
1 | < div class = "arrow_box" >ふきだしです。</ div > |
CSS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .arrow_box { position : relative ; display : inline-block ; background : #fff ; border : 4px solid #333 ; padding : 30px ; margin : 0 ; } .arrow_box:after, .arrow_box:before { content : "" ; height : 0 ; width : 0 ; position : absolute ; bottom : 100% ; left : 50% ; border : solid transparent ; } .arrow_box:after { border-color : rgba ( 255 , 255 , 255 , 0 ); border-bottom-color : #fff ; border-width : 14px ; margin-left : -14px ; } .arrow_box:before { border-color : rgba ( 51 , 51 , 51 , 0 ); border-bottom-color : #333 ; border-width : 20px ; margin-left : -20px ; } |
吹き出し(左)
HTML
1 | < div class = "arrow_box" >ふきだしです。</ div > |
CSS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .arrow_box { position : relative ; display : inline-block ; background : #fff ; border : 4px solid #333 ; padding : 30px ; margin : 0 ; } .arrow_box:after, .arrow_box:before { content : "" ; height : 0 ; width : 0 ; position : absolute ; right : 100% ; top : 50% ; border : solid transparent ; } .arrow_box:after { border-color : rgba ( 255 , 255 , 255 , 0 ); border-right-color : #fff ; border-width : 14px ; margin-top : -14px ; } .arrow_box:before { border-color : rgba ( 51 , 51 , 51 , 0 ); border-right-color : #333 ; border-width : 20px ; margin-top : -20px ; } |
吹き出し(右)
HTML
1 | < div class = "arrow_box" >ふきだしです。</ div > |
CSS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .arrow_box { position : relative ; display : inline-block ; background : #fff ; border : 4px solid #333 ; padding : 30px ; margin : 0 ; } .arrow_box:after, .arrow_box:before { content : "" ; height : 0 ; width : 0 ; position : absolute ; left : 100% ; top : 50% ; border : solid transparent ; } .arrow_box:after { border-color : rgba ( 255 , 255 , 255 , 0 ); border-left-color : #fff ; border-width : 14px ; margin-top : -14px ; } .arrow_box:before { border-color : rgba ( 51 , 51 , 51 , 0 ); border-left-color : #333 ; border-width : 20px ; margin-top : -20px ; } |
吹き出しをつくるのに便利なサイトさん
ベースは下記のサイトさんで作るのはいいかと思います。
仕組みがわかればオリジナルのコーディングを。
さいごに

