web-dev-qa-db-ja.com

CSSで矢印付きのボックスを作成する方法は?

CSSで矢印付きのボックスを作成する方法は?

角を丸くするのは簡単です。しかし、画像を使用せずに左側に矢印を作成するためのアイデア。

可能にすることは可能ですか

1つの要素のみ<p>....</p>

body {
  background: #ff004e;
  padding: 40px
}
p {
  background: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: 250px;
  height: 150px
}
<p></p>

enter image description here

29
Jitendra Vyas

このような :

.arrow {
    border: solid 10px transparent;
    border-right-color: #FFF;
}

デモ:http://jsfiddle.net/sparkup/edjdxjf2/

UPDATE:

Cssプロパティ:beforeを使用して、空の要素なしでも実現できます。

element:before {
    content: "";
    position: absolute;
    top: 50%;                         // half way down (vertical center).
    margin-top: -15px;                // adjust position, arrow has a height of 30px. 
    left:-30px;
    border: solid 15px transparent;
    border-right-color: #FFF;
    z-index: 1;
}

デモhttp://jsfiddle.net/sparkup/y89f1te0/

それが役に立てば幸い

38
Sparkup

Chris Coyierには、単一の要素(およびbefore/afters)を使用してCSSに組み込まれた可能な形状の優れたラウンドアップがあります。 http://css-tricks.com/examples/ShapesOfCSS/

13
David Kaneda

標準ツールチップ

単純な矢印が必要な場合は、border-rightを使用して擬似要素を追加できます。

body {
    background:#ff004e;
    padding:40px;
}
p {
    background:white;
    border-radius: 10px;
    width:250px;
    height:150px;
    position: relative;
    display: inline-block;
}
p:before {
    content:"";
    position: absolute;
    height: 0px;
    width: 0px;
    top: 60px;
    left: -29px; /* 1px buffer for zooming problems while rendering*/
    border-width: 15px;
    border-color: transparent white transparent transparent;
    border-style: solid;
}
<p></p>

FIDDLE 1

enter image description here


フラットエッジツールチップ

矢印にflat Edgeが必要な場合は、これを試してください:

body {
    background: #ff004e;
    padding:40px;
}
p {
    background:white;
    border-radius: 10px;
    width:250px;
    height:150px;
    position: relative;
    display: inline-block;
}
p:before {
    content:"";
    position: absolute;
    height: 45px;
    width: 16px; /* 1px buffer for zooming problems while rendering*/
    top: 50px;
    left: -15px; 
    background: white;
}
p:after {
    content:"";
    position: absolute;
    height: 40px;
    width: 15px;
    border-radius: 0 40px 40px 0;
    top: 75px;
    left: -15px;
    background: #ff004e;
    box-shadow: 0 -45px 0 0 #ff004e;
}
<p></p>

FIDDLE 2

enter image description here

11
The Pragmatick

このオンラインツールを使用すると、大量のコードを入力せずに実行できます

http://www.cssarrowplease.com

3

私の答え(平らなエッジなし)、いくつかの計算式を追加しました:

.mainBox {
    border: solid 1px #e0e0e0;        
}

.mainBox:before {
    content:"";
    position: absolute;
    /*The right value must be calculated with: (top value of after) - (top value of before) = (right value of before) */
    /*example: (-4px) - (-7px) = 3px*/
    right: 72px; 
    /*The `top` value must be identical to border-width*/
    top: -7px; 
    width: 0;
    height: 0;
    border-style: solid;
    /*The `border-width` value must be identical to top*/
    border-width: 0 7px 7px 7px;
    /*The border color 3rd (#e0e0e0) value must be identical to its parent border color*/
    border-color: transparent transparent #e0e0e0 transparent;
    /*The (z-index of before) must at least one below the (z-index of after)*/
    /*Example: (z-index of before) < (z-index of after) or 9998 < 9999*/
    z-index:9998;
}

.mainBox:after {
    content:"";
    position: absolute;
    right: 75px;
    top: -4px; /*suppose to be identical to border-width*/
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #fff transparent; 
    z-index:9999;
}

基本的なルールは次のとおりです。

  1. 直前の値は、(after 's top)-(before' s top)=(before 's right

例:(-4px)-(-7px)= 3px

  1. beforeおよびaftertopの値は、border-widthと同じでなければなりません。

  2. 3番目の境界線の色(この例では#e0e0e0)の値は、その親の境界線の色と同じでなければなりません。

  3. beforez-indexは、afterz-indexの下に少なくとも1つ必要です。

例:(before 's z-index)<(after' s z-index)または9998 <9999。

結果:

enter image description here

3
Shahar Shokrani
a.right{ border-style: dashed;
  border-color: transparent;
  border-width: 0.53em;
  display: -moz-inline-box;
  display: inline-block;
  font-size: 100px;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: middle;
  width: 0; border-left-width: 1em;
  border-left-style: solid;
  border-left-color: #666;
  left: 0.25em; }

上記のコードは右矢印に使用できます。

0