途中にテキストを入れて横罫を作ろうとしています。例えば:
-----------------------------------私のタイトルはこちら------------ -----------------
CSSでそれを行う方法はありますか?すべての「-」ダッシュがないことは明らかです。
fieldset
およびlegend
要素を検索することをお勧めします
途中にテキストを入れて横罫を作ろうとしています。例えば:
-----------------------------------私のタイトルはこちら------------ -----------------
CSSでそれを行う方法はありますか?すべての「-」ダッシュがないことは明らかです。
fieldset
およびlegend
要素を検索することをお勧めします
回答:
これは大体私がやる方法です:線はborder-bottom
包含にa を設定h2
しh2
、より小さいを与えることで作成されますline-height
。次に、テキストは、span
背景が透明でない入れ子にされます。
h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
}
h2 span {
background:#fff;
padding:0 10px;
}
<h2><span>THIS IS A TEST</span></h2>
<p>this is some content other</p>
私はChromeでのみテストしましたが、他のブラウザで動作しないはずはありません。
JSFiddle:http ://jsfiddle.net/7jGHS/
さまざまな解決策を試した後、異なるテキスト幅、可能な背景、および追加のマークアップを追加せずに有効なものを用意しました。
h1 {
overflow: hidden;
text-align: center;
}
h1:before,
h1:after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
width: 50%;
}
h1:before {
right: 0.5em;
margin-left: -50%;
}
h1:after {
left: 0.5em;
margin-right: -50%;
}
<h1>Heading</h1>
<h1>This is a longer heading</h1>
IE8、IE9、Firefox、Chromeでテストしました。ここで確認できますhttp://jsfiddle.net/Puigcerber/vLwDf/1/
h1 {
ます。`text-align:left; `text-indent:40px; `}
:after
要素をブロックの幅にするためにコードを少し調整しました。私は興味があります:正確には何の役割margin-right: -50%
ですか?コードをいじくり回していたときに、そのプロパティがないと、装飾が別の行に壊れてしまいます。また:after
、100%の幅が割り当てられている場合でも、幅を合わせるには50%の負のマージン右が必要です。どうして?
これはもっと複雑ですが、IE <8以外のすべてで機能します
<div><span>text TEXT</span></div>
div {
text-align: center;
position: relative;
}
span {
display: inline-block;
}
span:before,
span:after {
border-top: 1px solid black;
display: block;
height: 1px;
content: " ";
width: 40%;
position: absolute;
left: 0;
top: 1.2em;
}
span:after {
right: 0;
left: auto;
}
:before要素と:after要素は絶対的に配置されているため、1つを左に、1つを右にプルできます。また、幅(この場合は40%)は内部のテキストの幅に大きく依存します。そのための解決策を考える必要があります。少なくともは、top: 1.2em
フォントサイズが異なっていても、行がテキストの中央に多かれ少なかれ留まるようにします。
それでもうまくいくようです:http : //jsfiddle.net/tUGrf/3/
form
タグ内でこれを望まないことを望みます。もしそうなら、あなたが知っていると思いますが、彼は単純にfieldset
andを使用することができますlegend
。
最短かつ最良の方法:
span:after,
span:before{
content:"\00a0\00a0\00a0\00a0\00a0";
text-decoration:line-through;
}
<span> your text </span>
font-family: monospace;
。
これがFlexベースのソリューションです。
h1 {
display: flex;
flex-direction: row;
}
h1:before, h1:after{
content: "";
flex: 1 1;
border-bottom: 1px solid #000;
margin: auto;
}
h1:before {
margin-right: 10px
}
h1:after {
margin-left: 10px
}
<h1>Today</h1>
JSFiddle:https ://jsfiddle.net/yoshiokatsuneo/3h1fmj29/
<h1><span>Today</span></h1>
スパンにマージン/パディングがあります。
後で(nowdays)ブラウザのために、display:flex
そしてd pseudo-elements
が簡単に描画することができます。border-style
、メイクアップにbox-shadow
もbackground
役立ちます。
h1 {margin-top:50px;
display:flex;
background:linear-gradient(to left,gray,lightgray,white,yellow,turquoise);;
}
h1:before, h1:after {
color:white;
content:'';
flex:1;
border-bottom:groove 2px;
margin:auto 0.25em;
box-shadow: 0 -1px ;/* ou 0 1px si border-style:ridge */
}
<h1>side lines via flex</h1>
.hr-sect {
display: flex;
flex-basis: 100%;
align-items: center;
color: rgba(0, 0, 0, 0.35);
margin: 8px 0px;
}
.hr-sect::before,
.hr-sect::after {
content: "";
flex-grow: 1;
background: rgba(0, 0, 0, 0.35);
height: 1px;
font-size: 0px;
line-height: 0px;
margin: 0px 8px;
}
<div class="hr-sect">Text</div>
<div><span>text TEXT</span></div>
div {
height: 1px;
border-top: 1px solid black;
text-align: center;
position: relative;
}
span {
position: relative;
top: -.7em;
background: white;
display: inline-block;
}
スパンにパディングを付けて、テキストと行の間のスペースを広げます。
私はこの単純な装飾のいくつかの解決策を探していましたが、かなりの数の解決策、奇妙なもの、JSを使用してフォントの高さを計算するもの、bla、bla、blaを見つけたもの、そして私はこの記事の1からのコメント読んthirtydotをについて話す fieldset
とlegend
、私はそれがだと思いました。
私はこれらの2つの要素のスタイルをオーバーライドしています。それらのW3C標準をコピーして、.middle-line-text
クラス(または呼び出したいもの)に含めることができると思いますが、これは私がやったことです:
<fieldset class="featured-header">
<legend>Your text goes here</legend>
</fieldset>
<style>
.featured-header{
border-bottom: none;
border-left: none;
border-right: none;
text-align: center;
}
.featured-header legend{
-webkit-padding-start: 8px; /* It sets the whitespace between the line and the text */
-webkit-padding-end: 8px;
background: transparent; /** It's cool because you don't need to fill your bg-color as you would need to in some of the other examples that you can find (: */
font-weight: normal; /* I preffer the text to be regular instead of bold */
color: YOU_CHOOSE;
}
</style>
ここにフィドルがあります:http : //jsfiddle.net/legnaleama/3t7wjpa2/
私はボーダースタイルを試しましたが、Androidでも動作します;)(kitkat 4.XXでテスト済み)
編集:
良いオプションでもあるBekerov Arturのアイデアに従って、.pngのbase64画像を変更して.SVGでストロークを作成し、他のソフトウェアを使用せずに任意の解像度でレンダリングし、要素の色を変更できるようにしました:)
/* SVG solution based on Bekerov Artur */
/* Flexible solution, scalable, adaptable and also color customizable*/
.stroke {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1px' height='1px' viewBox='0 0 1 1' enable-background='new 0 0 1 1' fill='%23ff6600' xml:space='preserve'><rect width='1' height='1'/></svg>");
background-repeat: repeat-x;
background-position: left;
text-align: center;
}
.stroke h3 {
background-color: #ffffff;
margin: 0 auto;
padding:0 10px;
display: inline-block;
font-size: 66px;
}
IE8以降のソリューション...
注目に値する問題:
を使用background-color
して境界線をマスクすることは、最善の解決策ではない場合があります。複雑な(または不明な)背景色(または画像)がある場合、最終的にマスキングは失敗します。また、テキストのサイズを変更すると、白い背景色(または設定したもの)によって、上の行(または下の行)のテキストが隠れてしまうことに気付くでしょう。
また、コンテンツの幅が変化するレスポンシブサイトにスタイルを実装することは非常に柔軟性がなく、ほとんど不可能になるため、セクションの幅も「推測」したくありません。
解決:
(JSFiddleを表示)
で境界を「マスク」する代わりにbackground-color
、display
プロパティを使用します。
HTML
<div class="group">
<div class="item line"></div>
<div class="item text">This is a test</div>
<div class="item line"></div>
</div>
CSS
.group { display: table; width: 100%; }
.item { display: table-cell; }
.text { white-space: nowrap; width: 1%; padding: 0 10px; }
.line { border-bottom: 1px solid #000; position: relative; top: -.5em; }
要素にfont-size
プロパティを配置して、テキストのサイズを変更します.group
。
制限:
top
.line
要素のプロパティはの半分である必要がありline-height
ます。あなたが持っているのであれば、line-height
のを1.5em
、その後top
でなければなりません-.75em
。これは自動化されていないため、これは制限です。これらのスタイルを行の高さの異なる要素に適用する場合は、line-height
スタイルを再適用する必要がある場合があります。私にとって、これらの制限は、ほとんどの実装について私の回答の冒頭で指摘した「問題」を上回っています。
左側に固定された距離で(上記のように中央に配置されないように)表示されるように見出しを設定する方法を誰かが疑問に思っている場合は、@ Puigcerberのコードを変更してそのことを理解しました。
h1 {
white-space: nowrap;
overflow: hidden;
}
h1:before,
h1:after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
}
h1:before {
right: 0.3em;
width: 50px;
}
h1:after {
left: 0.3em;
width: 100%;
}
ここにJSFiddleがあります。
h6 {
font: 14px sans-serif;
margin-top: 20px;
text-align: center;
text-transform: uppercase;
font-weight: 900;
}
h6.background {
position: relative;
z-index: 1;
margin-top: 0%;
width:85%;
margin-left:6%;
}
h6.background span {
background: #fff;
padding: 0 15px;
}
h6.background:before {
border-top: 2px solid #dfdfdf;
content: "";
margin: 0 auto; /* this centers the line to the full width specified */
position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
top: 50%;
left: 0;
right: 0;
bottom: 0;
width: 95%;
z-index: -1;
}
これはあなたを助けます
テーブルレイアウトを使用して、側面を動的に塗りつぶし、高さ0の絶対位置のdivを使用して動的に垂直に配置します。
https://jsfiddle.net/eq5gz5xL/18/
真下の真ん中より少し下がテキストで最もよく見えることがわかりました。これはどこにあるかを調整できます55%
(高さが高いほどバーが低くなります)。線の外観はどこにあるかを変更できますborder-bottom
。
HTML:
<div class="title">
<div class="title-row">
<div class="bar-container">
<div class="bar"></div>
</div>
<div class="text">
Title
</div>
<div class="bar-container">
<div class="bar"></div>
</div>
</div>
</div>
CSS:
.title{
display: table;
width: 100%
background: linear-gradient(to right, white, lightgray);
}
.title-row{
display: table-row;
}
.bar-container {
display: table-cell;
position: relative;
width: 50%;
}
.bar {
position: absolute;
width: 100%;
top: 55%;
border-bottom: 1px solid black;
}
.text {
display: table-cell;
padding-left: 5px;
padding-right: 5px;
font-size: 36px;
}
死んだ馬を倒さないために、私は解決策を探していて、ここで終わりました、そして、特に、何らかの理由で、ここで提供された解決策を私にうまく機能させることができなかったので、私自身は選択肢に満足しませんでした。(おそらく私の側のエラーが原因です...)しかし、私はflexboxで遊んでいます、そしてこれは私が自分のために働くために得たものです。
一部の設定はハードワイヤードですが、デモンストレーションのみを目的としています。このソリューションは、ほとんどすべての最新のブラウザーで機能するはずです。.flex-parentクラスの固定設定を削除/調整し、colors / text / stuffを調整するだけで、(私は)このアプローチで満足するでしょう。
HTML:
.flex-parent {
display: flex;
width: 300px;
height: 20px;
align-items: center;
}
.flex-child-edge {
flex-grow: 2;
height: 1px;
background-color: #000;
border: 1px #000 solid;
}
.flex-child-text {
flex-basis: auto;
flex-grow: 0;
margin: 0px 5px 0px 5px;
text-align: center;
}
<div class="flex-parent">
<div class="flex-child-edge"></div>
<div class="flex-child-text">I found this simpler!</div>
<div class="flex-child-edge"></div>
</div>
ここにも私のソリューションを保存しました:https : //jsfiddle.net/Wellspring/wupj1y1a/1/
だれかが望む場合に備えて、CSSを使用したIMHOの最良のソリューションはフレックスボックスによるものです。
次に例を示します。
.kw-dvp-HorizonalButton {
color: #0078d7;
display:flex;
flex-wrap:nowrap;
align-items:center;
}
.kw-dvp-HorizonalButton:before, .kw-dvp-HorizonalButton:after {
background-color: #0078d7;
content: "";
display: inline-block;
float:left;
height:1px;
}
.kw-dvp-HorizonalButton:before {
order:1;
flex-grow:1;
margin-right:8px;
}
.kw-dvp-HorizonalButton:after {
order: 3;
flex-grow: 1;
margin-left: 8px;
}
.kw-dvp-HorizonalButton * {
order: 2;
}
<div class="kw-dvp-HorizonalButton">
<span>hello</span>
</div>
これにより、行とコンテンツの間のマージンを簡単に制御できる、左右に線が引かれた完全に中央揃えのコンテンツが常に得られます。
トップコントロールの前後に線要素を作成し、コンテンツを順序2(中央に移動)として設定しながら、それらをフレックスコンテナーで順序1,3に設定します。before / aftergrowに1を指定すると、コンテンツを中央に保ちながら、最も空いているスペースを均等に消費します。
お役に立てれば!
私は提案された方法のほとんどを試しましたが、全幅、または動的コンテンツには適していませんなどのいくつかの問題で終わります。最後に、コードを変更し、完全に動作しました。このサンプルコードは、これらの線を前後に描画し、コンテンツの変更に柔軟に対応します。中央揃えも。
HTML
<div style="text-align:center">
<h1>
<span >S</span>
</h1>
</div>
<div style="text-align:center">
<h1>
<span >Long text</span>
</h1>
</div>
CSS
h1 {
display: inline-block;
position: relative;
text-align: center;
}
h1 span {
background: #fff;
padding: 0 10px;
position: relative;
z-index: 1;
}
h1:before {
background: #ddd;
content: "";
height: 1px;
position: absolute;
top: 50%;
width: calc(100% + 50px);//Support in modern browsers
left: -25px;
}
h1:before {
left: ;
}
私にとってこの解決策は完全にうまくいきます...
HTML
<h2 class="strikethough"><span>Testing Text</span></h2>
CSS
.strikethough {
width:100%;
text-align:left;
border-bottom: 1px solid #bcbcbc;
overflow: inherit;
margin:0px 0 30px;
font-size: 16px;
color:#757575;
}
.strikethough span {
background:#fff;
padding:0 20px 0px 0px;
position: relative;
top: 10px;
}
Bootstrap 4を使用している人は、この方法で達成できます。HTMLコードで言及されているクラスはBootstrap 4のものです。
h1 {
position: relative;
flex-grow: 1;
margin: 0;
}
h1:before {
content: "";
display: block;
border-top: solid 2px blue;
width: 100%;
height: 1px;
position: absolute;
top: 50%;
z-index: 1;
}
h1 span {
background: #fff;
left: 12%;
padding: 0 15px;
position: relative;
z-index: 5;
}
そして、このようにあなたのHTMLを書いてください
<div class="d-flex flex-row align-items-center">
<h1><span> Title </span> </h1>
</div>
中央に単語がある水平線と垂直線
.box{
background-image: url("https://i.stack.imgur.com/N39wV.jpg");
width: 350px;
padding: 10px;
}
/*begin first box*/
.first{
width: 300px;
height: 100px;
margin: 10px;
border-width: 0 2px 0 2px;
border-color: red;
border-style: solid;
position: relative;
}
.first span {
position: absolute;
display: flex;
right: 0;
left: 0;
align-items: center;
}
.first .foo{
top: -8px;
}
.first .bar{
bottom: -8.5px;
}
.first span:before{
margin-right: 15px;
}
.first span:after {
margin-left: 15px;
}
.first span:before , .first span:after {
content: ' ';
height: 2px;
background: red;
display: block;
width: 50%;
}
/*begin second box*/
.second{
width: 300px;
height: 100px;
margin: 10px;
border-width: 2px 0 2px 0;
border-color: red;
border-style: solid;
position: relative;
}
.second span {
position: absolute;
top: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.second .foo{
left: -15px;
}
.second .bar{
right: -15.5px;
}
.second span:before{
margin-bottom: 15px;
}
.second span:after {
margin-top: 15px;
}
.second span:before , .second span:after {
content: ' ';
width: 2px;
background: red;
display: block;
height: 50%;
}
<div class="box">
<div class="first">
<span class="foo">FOO</span>
<span class="bar">BAR</span>
</div>
<br>
<div class="second">
<span class="foo">FOO</span>
<span class="bar">BAR</span>
</div>
</div>
結果:
body
{
background: #c0c0c0;
}
#block_with_line
{
width: 100%;
position: relative;
height: 18px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAASAQMAAACgmSb/AAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAZQTFRFAAAA4ODg8vF4+wAAAAJ0Uk5TAP9bkSK1AAAAEElEQVR4nGNgQAMN6AIMDAAJpACBAQttyAAAAABJRU5ErkJggg==');
}
#block_with_line span
{
background: #e4e4e4;
width: 150px;
display: block;
margin: 0 auto;
position: absolute;
left: 50%;
margin-left: -75px;
text-align: center
}
<body>
<div id="block_with_line">
<span>text</span>
</div>
</body>
form
タグの内側用ですか?