getting 2 paragraphs vertically centred between 1 div [duplicate] - html

This question already has answers here:
How can I horizontally center an element?
(133 answers)
How can I vertically center a div element for all browsers using CSS?
(48 answers)
How do I vertically center text with CSS? [duplicate]
(37 answers)
How do I vertically align text in a div?
(34 answers)
How to vertically align an image inside a div
(37 answers)
Closed 4 years ago.
I have two p and one div.
I would that text get vertically centred.
<div class="toggle-area">
<p>SEARCH BY</p>
<div class="switch-inner">
<p class ="toggle-inline">Business group</p>
<div class="toggle-btn toggle-inline">
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</div>
<p class="toggle-inline">Borrower</p>
</div>
</div>
Here's the CSS :
.toggle-btn {
margin: auto;
text-align: center;
}
.toggle-area {
padding-top:31px;
padding-bottom: 30px;
text-align: center;
}
.toggle-inline {
display: inline;
line-height: 100%;
}
.search-input {
text-align: center;
width: 400px;
margin: auto
}
.switch-inner {
vertical-align: middle;
}
The div contains a switch toggle input . the detailed css is here
Here's the actual behavior
And here's what I would

Related

How to center a element into a div into another div [duplicate]

This question already has answers here:
In CSS Flexbox, why are there no "justify-items" and "justify-self" properties?
(6 answers)
Center one and right/left align other flexbox element
(11 answers)
Closed 10 months ago.
.header_main_page_portal {
background-color: white;
height: 80px;
width: 100%;
}
.image_login_portal {
width: 500px;
}
.image_login_portal img {
margin: auto;
display: block;
}
.title_main_page {
justify-content: center;
display: flex;
margin: 0 auto;
width: 100%;
}
<div class="header_main_page_portal">
<div class="image_login_portal">
<img src="http://127.0.0.1:8000/storage/diba/images/logo-portal.png" class="logo-nav_portal_main_page" alt="logo-client">
</div>
<div class="title_main_page">
<h6>PÀGINA PRINCIPAL</h6>
</div>
</div>
I have a div that acts as a header, occupying 100% of the width of the screen.
Inside this div, I have another one with the logo on the left side.
Next to this I have another div with an h6 centered inside this last div.
My problem is that the title div starts when the photo ends, so the h6 doesn't appear centered on the screen. Although it is inside the div.
<div class="header_main_page_portal">
<div class="image_login_portal">
<img src="XXXX" class="logo-nav_portal_main_page" alt="logo-client">
</div>
<div class="title_main_page">
<h6>MAIN PAGE</h6>
</div>
</div>
Thanks!! :D

Align self doesn't work on an anchor tag when its parent is flex [duplicate]

This question already has answers here:
How can I center text (horizontally and vertically) inside a div block?
(27 answers)
In CSS Flexbox, why are there no "justify-items" and "justify-self" properties?
(6 answers)
Flexbox: center horizontally and vertically
(14 answers)
Closed 1 year ago.
The community reviewed whether to reopen this question 1 year ago and left it closed:
Original close reason(s) were not resolved
I can't get the align-self: center property to work on an a tag
.container {
margin-bottom: 1rem;
background-color: red;
}
.container-link {
display: flex;
align-self: center;
padding-left: 2rem;
height: 50px;
}
<div class="container">
<a class="container-link" href="google.com">link</a>
</div>
<div class="container">
<a class="container-link" href="#">link</a>
</div>
Howcome those links aren't aligned in the center now...?
I tried adding flex to the container too but no go
.container {
margin-bottom: 1rem;
background-color: red;
display: flex;
}
.container-link {
display: flex;
align-self: center;
padding-left: 2rem;
height: 50px;
}
<div class="container">
<a class="container-link" href="google.com">link</a>
</div>
<div class="container">
<a class="container-link" href="#">link</a>
</div>
Why does this not work either?
align-self: flex-end not working in flexbox
You're applying flex properties to a child of a block element. Such
properties will be ignored because you're in a block formatting
context.
Switch from display: block to display: flex to establish a flex
formatting context.
My parent is flex
can't get align-self to work in a flexbox container
Again, same rebuttal, I am flexing and my container is flex?
Why does align self center not work?

How to align center text that next to a span? [duplicate]

This question already has answers here:
How can I vertically align elements in a div?
(28 answers)
Flexbox: center horizontally and vertically
(14 answers)
Closed 1 year ago.
I am trying to put "per month" vertical-align to the price "$29" just like the picture.You can help me fix my code or give me a new way that is better for me.
This is what I want.
This is what I had
here is my HTML code.
<div class="deal">
<span class="price">&dollar;29</span>
<span class="period">per month</span>
</div>
and my css.
.price {
font-size: 50px;
}
.monthly {
color: #d0d3d4;
vertical-align: middle;
display: inline-block;
}
CSS
.deal{
display:flex;
align-items:center;
}
.period{
margin-left:0.5rem;
}
jsfiddle
.deal {
display: inline-flex;
align-items: center;
}

How to vertically center two child elements? [duplicate]

This question already has answers here:
Centering in CSS Grid
(9 answers)
Flexbox: center horizontally and vertically
(14 answers)
How can I vertically align elements in a div?
(28 answers)
How to vertically align text with icon font?
(10 answers)
Closed 2 years ago.
I know there are a thousand references to similar cases but trying to apply the solutions I do not see where I am making the mistake.
I have a parent element that distributes across the screen 3 blocks of info composed by a large icon and a descriptive text below.
In principle with the html and css that I show you below, I layout it as I want, but when I reduce the width of the descriptive text, so that it has the same width as the icon, although I apply it visually, it still respects the original width in layout. Then I include the inline-block and adjust the value perfectly.
But I have reached the point where I am not able to align the icon and text in the center.
I have tried applying a display: grid to the father, positioning them vertically but I can't find a way to center them.
Thanks in advance for your help and time
.options-resume {
display: flex;
justify-content: center;
}
.resume-subtitle {
color: #666b74;
font-weight: bold;
font-size: 38px;
padding: 45px 0 45px 0;
}
.resume-column {
display: inline-grid;
}
.resume-icons {
display: flex;
justify-content: space-around;
}
.resume-subtitle {
display: inline-block;
font-family: 'RalewayRegular';
font-size: 14px;
color: #666b74;
position: relative;
width: 58%;
text-align: center;
}
.icon-credit-card {
font-size: 220px;
}
.icon-support {
font-size: 220px;
}
.icon-phone {
font-size: 220px;
}
<div class="options-resume">
<h1 class="resume-subtitle">How to center vertically ?</h1>
</div>
<div class="resume-icons">
<div class="resume-column">
<label>
<i class="icon-credit-card"></i>
</label>
<p class="resume-subtitle">Lorem Ipsum is simply dummy text of the printing and typesett</p>
</div>
<div class="resume-column">
<label>
<i class="icon-phone"></i>
</label>
<p class="resume-subtitle">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="resume-column">
<label>
<i class="icon-support"></i>
</label>
<p class="resume-subtitle">Lorem Ipsum is simply dummy text of the prin</p>
</div>
</div>
I leave you also a codepen link with the behavior of my application but with images
https://codepen.io/CharlieJS/pen/VwaKRZj
Try this
.resume-column {
display: flex;
flex-direction: column;
align-items: center;
}

Aligning <div> in vertically center [duplicate]

This question already has answers here:
How can I vertically align elements in a div?
(28 answers)
Vertically centering a div inside another div [duplicate]
(24 answers)
Best way to center a <div> on a page vertically and horizontally? [duplicate]
(30 answers)
vertical align middle in <div>
(11 answers)
Flexbox: center horizontally and vertically
(14 answers)
Closed 4 years ago.
I cannot align #container and its content in the center vertically. I thought adding further <div> tags would be a problematic and I cannot control them.
I want the text and #container to be aligned in the center of .content vertically without adding any extra space.
#container {
display: grid;
padding: 20px;
grid-template-areas: 'sideone sideone sidetwo sidetwo sidethree sidethree';
grid-gap: 20px;
text-align: center;
}
.content {
display: table;
margin: 15px;
height: 500px;
width: 100%;
transition-duration: 0.15s;
border: 2px solid #3B3B3B;
}
<div class="content">
<div id="container">
<div style="grid-area: sideone;">
<p>あ - ა</p>
<p>い - ი</p>
<p>う - უ</p>
<p>え - ე</p>
<p>お - ო</p>
</div>
<div style="grid-area: sidetwo">
<p>か - კა</p>
<p>さ - სა</p>
<p>た - ტა</p>
<p>な - მა</p>
<p>は - ჰა</p>
</div>
<div style="grid-area: sidethree">
<p>き - კი</p>
<p>し - ში</p>
<p>ち - ჩი</p>
<p>に - ნი</p>
<p>み - მი</p>
</div>
</div>
</div>
add margin:0px auto; into .content and it should align it to the center of the container.
it should loook something like this:
.content {
display: table;
margin: 15px;
height: 500px;
width: 100%;
transition-duration: 0.15s;
border: 2px solid #3B3B3B;
margin:0px auto;
}