第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 HTML/CSS 中制作垂直分隔線

在 HTML/CSS 中制作垂直分隔線

明月笑刀無情 2024-01-22 20:46:20
我需要實(shí)現(xiàn)一條垂直線,如下圖所示。提前致謝.root_class {? display: flex;? justify-content: center;? align-items: center;? width: 75%;? margin: 0 auto;? border: thin solid #ccc;}.text {? font-size: 3rem;? margin: 0;? margin-right: 10rem;}.percentile-card {? transition: 0.3s;? margin: 1rem;? padding: 5px;}.percentile-card p {? margin: 0;}.percentile-card p:first-child {? color: #bbb;}<div class="root_class rhs-background">? ? ? ? <p class="text">Where Do i Stand Overall ?</p>? ? ? ? <hr width="1" size="500">? ? ? ? <div class="percentile-card text-center">? ? ? ? ? <h4>You did better Than</h4>? ? ? ? ? <i class="fa fa-users pull-left" style="margin-left: 40px;" aria-hidden="true"></i>? ? ? ? ? <h5><b>60%</b></h5>? ? ? ? </div>? ? ? </div>
查看完整描述

4 回答

?
www說

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊

<hr style="width:100px; transform:rotate(90deg);">
查看完整回答
反對(duì) 回復(fù) 2024-01-22
?
函數(shù)式編程

TA貢獻(xiàn)1807條經(jīng)驗(yàn) 獲得超9個(gè)贊

<style>

.vl {

? border-left: 6px solid green;

? height: 500px;

? position: absolute;

? left: 50%;

? margin-left: -3px;

? top: 0;

}

</style>



<h2>Vertical Line</h2>


<div class="vl"></div>


我的代碼;


.root_class {

? display: flex;

? height : 100px;

? justify-content: center;

? align-items: center;

? width: 75%;

? margin: 0 auto;

? border: thin solid #ccc;

}


.text {

? font-size: 22px;

? margin-right : 25px;

}


.percentile-card {

? transition: 0.3s;

? margin: 1rem;

? padding: 5px;

}

.vl {

? border-left: 6px solid green;

? height: 100px;

? left: 50%;

? margin-left: -3px;

? top: 0;

}


.percentile-card p:first-child {

? color: #bbb;

}

.rate{


margin-left : 60px;


}

.better{

? ? margin-top : 50px;

}

<div class="root_class">


? ? ? ? <p class="text">Where Do i Stand Overall ?</p>

? ? ? ? ? <div class="vl"></div>

? ? ? ? ? <div class="percentile-card text-center">


? ? ? ? ? ? ? <h4 class="better">You did better Than</h4>

? ? ? ? ? ? ? ? <h5 class="rate"><b>60%</b></h5>

? ? ? ? ? </div>

? ??

</div>


查看完整回答
反對(duì) 回復(fù) 2024-01-22
?
Helenr

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以通過兩種方式簡單地做到這一點(diǎn):

  1. 在 hr 中添加 margin 0,就像在 css 中一樣 add hr { margin: 0; }

  2. 或者,您可以在內(nèi)容定位后嘗試如下代碼(更靈活)

.root_class {

  display: flex;

  justify-content: center;

  align-items: stretch;

  width: 75%;

  margin: 0 auto;

  border: thin solid #ccc;

  height: 400px;

  background: linear-gradient(to right, #fff 75%, #00a);

}


.text {

  font-size: 3rem;

  margin: 0;

  padding-right: 5rem;

  padding-left: 1rem;

  display: flex;

  align-items: center;

  position: relative;

}

.text:after {

  content: '';

  position: absolute;

  right: 0;

  height: 100%;

  width: 1px;

  background-color: black;

}


hr{

  margin: 0;

}


.percentile-card {

  transition: 0.3s;

  padding: 5px;

  margin: 1rem;

}


.percentile-card p {

  margin: 0;

}


.percentile-card p:first-child {

  color: #bbb;

}

<div class="root_class rhs-background">

  <p class="text">Where Do i Stand Overall ?</p>

  <div class="percentile-card text-center">

    <h4>You did better Than</h4>

    <i class="fa fa-users pull-left" style="margin-left: 40px;" aria-hidden="true"></i>

    <h5><b>60%</b></h5>

  </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2024-01-22
?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以將 Margin:0 添加到行中:


.root_class {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 75%;

  margin: 0 auto;

  border: thin solid #ccc;

}


.text {

  font-size: 3rem;

  margin: 0;

  margin-right: 10rem;

}


.percentile-card {

  transition: 0.3s;

  margin: 1rem;

  padding: 5px;

}


.percentile-card p {

  margin: 0;

}


.VerticalLine {

  margin: 0;

  border: 0;

  width: 15px;

  background: teal;

}


.percentile-card p:first-child {

  color: #bbb;

}

<div class="root_class rhs-background">

  <p class="text">Where Do i Stand Overall ?</p>

  <hr class="VerticalLine" width="5px" size="500">

  <div class="percentile-card text-center">

    <h4>You did better Than</h4>

    <i class="fa fa-users pull-left" style="margin-left: 40px;" aria-hidden="true"></i>

    <h5><b>60%</b></h5>

  </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2024-01-22
  • 4 回答
  • 0 關(guān)注
  • 345 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)