次のようなテキストの両側に線を作成するために厳密なxhtml 1.0のオプションはどれですか?
セクション1 -----------------------次のセクション------------- ---------- セクション2
私はこのようないくつかの派手なことをすることを考えました:
<div style="float:left; width: 44%;"><hr/></div>
<div style="float:right; width: 44%;"><hr/></div>
Next section
または、上記には位置合わせ(垂直および水平の両方)に問題があるため:
<table><tr>
<td style="width:47%"><hr/></td>
<td style="vertical-align:middle; text-align: center">Next section</td>
<td style="width:47%"><hr/></td>
</tr></table>
これにはアライメントの問題もあり、この混乱で解決します:
<table><tr>
<td style="border-bottom: 1px solid gray; width: 47%"> </td>
<td style="vertical-align:middle;text-align:center" rowspan="2">Next section</td>
<td style="border-bottom: 1px solid gray; width: 47%"> </td>
</tr><tr>
<td> </td>
<td> </td>
</tr></table>
位置合わせの問題に加えて、両方のオプションは「ずんぐりした」感じがします。これを以前に見たことがあり、エレガントなソリューションを知っていたなら、私は大いに喜んでいます。
どうですか:
<div style="width: 100%; height: 20px; border-bottom: 1px solid black; text-align: center">
<span style="font-size: 40px; background-color: #F3F5F6; padding: 0 10px;">
Section Title <!--Padding is optional-->
</span>
</div>
これを確認してください JSFiddle 。
vw
または%
を使用して、レスポンシブにすることができます。
幅と背景色を知らずにこれを解決する方法は次のとおりです。
構造
<div class="strike">
<span>Kringle</span>
</div>
CSS
.strike {
display: block;
text-align: center;
overflow: hidden;
white-space: nowrap;
}
.strike > span {
position: relative;
display: inline-block;
}
.strike > span:before,
.strike > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: red;
}
.strike > span:before {
right: 100%;
margin-right: 15px;
}
.strike > span:after {
left: 100%;
margin-left: 15px;
}
二重線
二重線を作成するには、次のオプションのいずれかを使用します。
1)行間の固定スペース
.strike > span:before,
.strike > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
border-top: 4px double red;
例: http://jsfiddle.net/z8Hnz/103/
2)行間のカスタムスペース
.strike > span:before,
.strike > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 5px; /* space between lines */
margin-top: -2px; /* adjust vertical align */
border-top: 1px solid red;
border-bottom: 1px solid red;
}
例: http://jsfiddle.net/z8Hnz/105/
SASS(SCSS)バージョン
このソリューションに基づいて、誰かを助けることができるなら、SCSSを「色のプロパティで」追加しました...
//mixins.scss
@mixin bg-strike($color) {
display: block;
text-align: center;
overflow: hidden;
white-space: nowrap;
> span {
position: relative;
display: inline-block;
&:before,
&:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: $color;
}
&:before {
right: 100%;
margin-right: 15px;
}
&:after {
left: 100%;
margin-left: 15px;
}
}
}
使用例:
//content.scss
h2 {
@include bg-strike($col1);
color: $col1;
}
コンテナの幅や背景色を知らなくても:: beforeおよび:: afterでこれを実現でき、改行のスタイリングを強化できます。たとえば、これを変更して、二重線、点線などを作成できます。
CSS、およびHTMLの使用:
.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">CATEGORY</div>
これを試して:
.divider {
width:500px;
text-align:center;
}
.divider hr {
margin-left:auto;
margin-right:auto;
width:40%;
}
.left {
float:left;
}
.right {
float:right;
}
<div class="divider">
<hr class="left"/>TEXT<hr class="right" />
</div>
jsFiddle のライブプレビュー。
私はちょうど同じ問題に出くわしました、ここにそれを解決する1つの方法があります:
<table width="100%">
<tr>
<td><hr /></td>
<td style="width:1px; padding: 0 10px; white-space: nowrap;">Some text</td>
<td><hr /></td>
</tr>
</table>
テキスト要素に背景を設定せずに機能します。つまり、背景の背景に関係なく見栄えがよくなります。
ここで試すことができます: http://jsfiddle.net/88vgS/
これが理解されたかどうかはわかりませんが、flexboxはかなりの解決策を提供します。
<div class="separator">Next section</div>
.separator {
display: flex;
align-items: center;
text-align: center;
}
.separator::before, .separator::after {
content: '';
flex: 1;
border-bottom: 1px solid #000;
}
.separator::before {
margin-right: .25em;
}
.separator::after {
margin-left: .25em;
}
デモについては、 http://jsfiddle.net/MatTheCat/Laut6zyc/ をご覧ください。
現在、互換性は それほど悪くない (古いflexbox構文をすべて追加できます)であり、正常に低下します。
UPDATE:これはHTML5を使用すると機能しません
代わりに、この質問でその他のテクニックを確認してください: CSSチャレンジ、これ以上HTMLを導入せずにこれを行うことはできますか?
line-height:0
を使用して、サイトのヘッダーにエフェクトを作成しました guerilla-alumnus.com
<div class="description">
<span>Text</span>
</div>
.description {
border-top:1px dotted #AAAAAA;
}
.description span {
background:white none repeat scroll 0 0;
line-height:0;
padding:0.1em 1.5em;
position:relative;
}
別の良い方法は http://robots.thoughtbot.com/ です
彼は背景画像を使用し、フロートしてクールな効果を実現しています
CSSを使用でき、非推奨のalign
属性を使用する場合は、スタイル付きのフィールドセット/凡例が機能します。
<style type="text/css">
fieldset {
border-width: 1px 0 0 0;
}
</style>
<fieldset>
<legend align="center">First Section</legend>
Section 1 Stuff
</fieldset>
<fieldset>
<legend align="center">Second Section</legend>
Section 2 Stuff
</fieldset>
フィールドセットの目的は、フォームフィールドを論理的にグループ化することです。 willolerが指摘したように、text-align: center
スタイルはlegend
要素では機能しません。 align="center"
は非推奨のHTMLですが、すべてのブラウザーでテキストを適切に中央揃えする必要があります。
相対的な位置を使用して、親の高さを設定することができます
.fake-legend {
height: 15px;
width:100%;
border-bottom: solid 2px #000;
text-align: center;
margin: 2em 0;
}
.fake-legend span {
background: #fff;
position: relative;
top: 0;
padding: 0 20px;
line-height:30px;
}
<p class="fake-legend"><span>Or</span>
</p>
<div style="text-align: center; border-top: 1px solid black">
<div style="display: inline-block; position: relative; top: -10px; background-color: white; padding: 0px 10px">text</div>
</div>
ブートストラップグリッド:
HTML:
<div class="row vertical-center">
<div class="col-xs-5"><hr></div>
<div class="col-xs-2" style="color: white"> Text</div>
<div class="col-xs-5"><hr></div>
</div>
CSS:
.vertical-center{
display: flex;
align-items: center;
}
2年前の投稿を盛り上げましたが、1つの要素とCSSのみを使用してこれらの状況にアプローチする方法を次に示します。
h1 {
text-align: center;
}
h1:before,
h1:after {
content: "";
background: url('http://heritageonfifth.com/images/seperator.png') left center repeat-x;
width: 15%;
height: 30px;
display: inline-block;
margin: 0 15px 0 0;
}
h1:after{
background-position: right center;
margin: 0 0 0 15px;
}
そして、それを確認するためのフィドルがあります: http://jsfiddle.net/sRhBc/ (境界線のために撮影されたGoogleからのランダムな画像)。
このアプローチの唯一の欠点は、IE7をサポートしていないことです。
<fieldset style="border:0px; border-top:1px solid black">
<legend>Test</legend>
</fieldset>
邪悪なハック...
CSSのみを使用し、バックグラウンドトリックを使用しないシンプルなソリューションをご紹介します...
.center-separator {
display: flex;
line-height: 1em;
color: gray;
}
.center-separator::before, .center-separator::after {
content: '';
display: inline-block;
flex-grow: 1;
margin-top: 0.5em;
background: gray;
height: 1px;
margin-right: 10px;
margin-left: 10px;
}
HTML:
<div class="center-separator">
centered text
</div>
フィドルの例: https://jsfiddle.net/0Lkj6wd3/
中央にスパンを持つh1
を使用します。
HTMLの例:
<h1><span>Test archief</span></h1>
CSSの例:
.archive h1 {border-top:3px dotted #AAAAAA;}
.archive h1 span { display:block; background:#fff; width:200px; margin:-23px auto; text-align:center }
そのような単純な。
fiddle を作成しました。FlexBoxを使用し、さまざまなスタイルのHR(二重線、線の中心のシンボル、ドロップシャドウ、インセット、破線など)も提供します。
CSS
button {
padding: 8px;
border-radius: 4px;
background-color: #fff;
border: 1px solid #ccc;
margin: 2px;
}
button:hover {
cursor: pointer;
}
button.active {
background-color: rgb(34, 179, 247);
color: #fff;
}
.codeBlock {
display: none;
}
.htmlCode, .cssCode {
background-color: rgba(34, 179, 247, 0.5);
width: 100%;
padding: 10px;
}
.divider {
display: flex;
flex-direction: row;
flex-flow: row;
width: 100%;
}
.divider.fixed {
width: 400px;
}
.divider > label {
align-self: baseline;
flex-grow: 2;
white-space: nowrap;
}
.divider > hr {
margin-top: 10px;
width: 100%;
border: 0;
height: 1px;
background: #666;
}
.divider.left > label {
order: 1;
padding-right: 5px;
}
.divider.left > hr {
order: 2
}
.divider.right > label {
padding-left: 5px;
}
/* hr bars with centered text */
/* first HR in a centered version */
.divider.center >:first-child {
margin-right: 5px;
}
/* second HR in a centered version */
.divider.center >:last-child {
margin-left: 5px;
}
/** HR style variations **/
hr.gradient {
background: transparent;
background-image: linear-gradient(to right, #f00, #333, #f00);
}
hr.gradient2 {
background: transparent;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
hr.dashed {
background: transparent;
border: 0;
border-top: 1px dashed #666;
}
hr.dropshadow {
background: transparent;
height: 12px;
border: 0;
box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}
hr.blur {
background: transparent;
border: 0;
height: 0;
/* Firefox... */
box-shadow: 0 0 10px 1px black;
}
hr.blur:after {
background: transparent;
/* Not really supposed to work, but does */
content: "\00a0";
/* Prevent margin collapse */
}
hr.inset {
background: transparent;
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
hr.flared {
background: transparent;
overflow: visible;
/* For IE */
height: 30px;
border-style: solid;
border-color: black;
border-width: 1px 0 0 0;
border-radius: 20px;
}
hr.flared:before {
background: transparent;
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: black;
border-width: 0 0 1px 0;
border-radius: 20px;
}
hr.double {
background: transparent;
overflow: visible;
/* For IE */
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
text-align: center;
}
hr.double:after {
background: transparent;
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
}
HTML
<div class="divider left">
<hr />
<label>Welcome!</label>
</div>
<p> </p>
<div class="divider right">
<hr />
<label>Welcome!</label>
</div>
<p> </p>
<div class="divider center">
<hr />
<label>Welcome!</label>
<hr />
</div>
<p> </p>
<div class="divider left fixed">
<hr />
<label>Welcome!</label>
</div>
<p> </p>
<div class="divider right fixed">
<hr />
<label>Welcome!</label>
</div>
<p> </p>
<div class="divider center fixed">
<hr />
<label>Welcome!</label>
<hr />
</div>
または、ここにインタラクティブなフィドルがあります: http://jsfiddle.net/mpyszenj/439/
上記を見て、次のように変更しました:
CSS
.divider {
font: 33px sans-serif;
margin-top: 30px;
text-align:center;
text-transform: uppercase;
}
.divider span {
position:relative;
}
.divider span:before, .divider span:after {
border-top: 2px solid #000;
content:"";
position: absolute;
top: 15px;
right: 10em;
bottom: 0;
width: 80%;
}
.divider span:after {
position: absolute;
top: 15px;
left:10em;
right:0;
bottom: 0;
}
HTML
<div class="divider">
<span>This is your title</span></div>
うまくいくようです。
<header>
<h1 contenteditable>Write something</h1>
</header>
header{
display:table;
text-align:center;
}
header:before, header:after{
content:'';
display:table-cell;
background:#000;
width:50%;
-webkit-transform:scaleY(0.3);
transform:scaleY(0.3);
}
header > h1{ white-space:pre; padding:0 15px; }
これは私にとってはうまくいき、境界線を隠すためにテキストの背景色を必要とせず、代わりに実際のhrタグを使用します。幅をいろいろ試して、さまざまなサイズのhr行を取得できます。
<div>
<div style="display:inline-block;width:45%"><hr width='80%' /></div>
<div style="display:inline-block;width: 9%;text-align: center;vertical-align:90%;text-height: 24px"><h4>OR</h4></div>
<div style="display:inline-block;width:45%;float:right" ><hr width='80%'/></div>
</div>
fieldset
を実行し、border-top
のみを設定して、フィールドの中央に「legend」要素(「次のセクション」のテキスト)を配置してみてください。 fieldset要素に従って凡例がどのように配置されるのかわかりません。ただし、このトリックを行うのは単純なmargin: 0px auto
にすぎないのではないかと思います。
例:
<fieldset>
<legend>Title</legend>
</fieldset>
@kajicのソリューションを採用し、CSSにスタイルを設定します。
<table class="tablehr">
<td><hr /></td>
<td>Text!</td>
<td><hr /></td>
</table>
次に、CSS(ただし、n番目のセレクターの使用はCSS3に依存します):
.tablehr { width:100%; }
.tablehr > tbody > tr > td:nth-child(2) { width:1px; padding: 0 10px; white-space: nowrap; }
乾杯。
(PS tbodyとtrでは、Chrome、IE、Firefoxは少なくとも自動的にtbodyとtrを挿入します。そのため、@ kajicのような私のサンプルは、必要なhtmlで短くするためにこれらを含めません。マークアップ:このソリューションは、2013年時点でIE、Chrome、Firefoxの最新バージョンでテストされています。
これは1年前ですが、私の最初の投稿をWoohoo。ラッパーでの背景色の問題を回避するために、hrでinline-blockを使用できます(誰も明示的に言っていません)。テキスト揃えはインライン要素であるため、正しく中央揃えする必要があります。
<div style="text-align:center">
<hr style="display:inline-block; position:relative; top:4px; width:45%" />
New Section
<hr style="display:inline-block; position:relative; top:4px; width:45%" />
</div>
ただ使う
hr
{
padding: 0;
border: none;
border-top: 1px solid #CCC;
color: #333;
text-align: center;
font-size: 12px;
vertical-align:middle;
}
hr:after
{
content: "Or";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.2em;
padding: 0 0.25em;
background: white;
}
古き良きFIELDSETが常にあります
fieldset
{
border-left: none;
border-right: none;
border-bottom: none;
}
fieldset legend
{
text-align: center;
padding-left: 10px;
padding-right: 10px;
}
<hr />
なしでこれを達成できます。意味的には、CSSを使用して設計を行う必要があります。この場合、非常に可能です。
div.header
{
position: relative;
text-align: center;
padding: 0 10px;
background: #ffffff;
}
div.line
{
position: absolute;
top: 50%;
border-top: 1px dashed;
z-index: -1;
}
<div class="header">
Next section
<div class="line"> </div>
</div>
.Divider {
width: 100%; height: 30px; text-align: center;display: flex;
}
.Side{
width: 46.665%;padding: 30px 0;
}
.Middle{
width: 6.67%;padding: 20px 0;
}
<div class="Divider">
<div class="Side"><hr></div>
<div class="Middle"><span>OR</span></div>
<div class="Side"><hr></div>
</div>
タグ「span」内のテキストの長さに基づいて、クラス「side」および「middle」の幅を変更できます。 「中央」の幅に「サイド」の幅の2倍を加えたものが100%であることを確認してください。
レスポンシブで透明な背景、可変の高さとスタイルのディバイダー、可変のテキスト位置、ディバイダーとテキスト間の調整可能な距離。同じプロジェクトの複数のディバイダースタイルの異なるセレクターで複数回適用することもできます。
SCSS以下。
マークアップ(HTML):
<div class="divider" text-position="right">Divider</div>
CSS:
.divider {
display: flex;
align-items: center;
padding: 0 1rem;
}
.divider:before,
.divider:after {
content: '';
flex: 0 1 100%;
border-bottom: 5px dotted #ccc;
margin: 0 1rem;
}
.divider:before {
margin-left: 0;
}
.divider:after {
margin-right: 0;
}
.divider[text-position="right"]:after,
.divider[text-position="left"]:before {
content: none;
}
text-position
がなければ、デフォルトで中央に配置されます。
デモ:
.divider {
display: flex;
align-items: center;
padding: 0 1rem;
}
.divider:before,
.divider:after {
content: '';
flex: 0 1 100%;
border-bottom: 5px dotted #ccc;
margin: 0 1rem;
}
.divider:before {
margin-left: 0;
}
.divider:after {
margin-right: 0;
}
.divider[text-position="right"]:after,
.divider[text-position="left"]:before {
content: none;
}
<span class="divider" text-position="left">Divider</span>
<h2 class="divider">Divider</h2>
<div class="divider" text-position="right">Divider</div>
そして、SCSS、それを素早く変更するには:
$divider-selector : ".divider";
$divider-border-color: rgba(0,0,0,.21);
$divider-padding : 1rem;
$divider-border-width: 1px;
$divider-border-style: solid;
$divider-max-width : 100%;
#{$divider-selector} {
display: flex;
align-items: center;
padding: 0 $divider-padding;
max-width: $divider-max-width;
margin-left: auto;
margin-right: auto;
&:before,
&:after {
content: '';
flex: 0 1 100%;
border-bottom: $divider-border-width $divider-border-style $divider-border-color;
margin: 0 $divider-padding;
transform: translateY(#{$divider-border-width} / 2)
}
&:before {
margin-left: 0;
}
&:after {
margin-right: 0;
}
&[text-position="right"]:after,
&[text-position="left"]:before {
content: none;
}
}
ここを中心に 。
適切な背景画像でラッパーブロックを作成できます(また、中央のテキストブロックに背景色を設定できます)。