Search
 
SCRIPT & CODE EXAMPLE
 

CSS

responsive text css

/* Uses vh and vm with calc */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

/* Safari <8 and IE <11 */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

@media screen and (min-width: 50em){
html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}
Comment

responsive text CSS

/* Instead of using px measurements, use % when setting width or height.*/
/* The % is calculted from the width of the parent element.*/
#NonResponsiveWidth {
	width: 1080px;
    height: auto;
}
#responsiveWidth {
	width: 85%;
    height: auto;
}
/*For text, use vw (viewport-width) instead of px when setting font-width*/
#NonResponsiveText { font-size: 20px; }
#responsiveWidth { font-size: 10vw; }
Comment

responsive text css

<h1 style="font-size:10vw;">Responsive Text</h1>

<p style="font-size:5vw;">Resize the browser window to see how the text size scales.</p>
Comment

responsive text size

$-xs-text: h1 22px, h2 18px, h3 14px, h4 12px, h5 11px, h6 10px, p 10px;
$-sm-text: h1 25px, h2 18px, h3 14px, h4 13px, h5 12px, h6 10px, p 10px
$-md-text: h1 30px, h2 21px, h3 16px, h4 14px, h5 13px, h6 12px, p 12px;
$-xl-text: h1 37px, h2 23px, h3 19px, h4 16px, h5 16px, h6 14px, p 14px;
$xxl-text: h1 45px, h2 28px, h3 23px, h4 20px, h5 18px, h6 16px, p 16px;

$responsive-text-sizes: (
    xs: $-xs-text,
    sm: $-sm-text,
    md: $-md-text,
    xl: $-xl-text,
    xxl: $xxl-text,
);
@each $breakpoints in map-keys($map: $responsive-text-sizes) {
    @include media-breakpoint-up($breakpoints) {
        @each $element, $size, $py, $px, $fw in map-get($map: $responsive-text-sizes, $key: $breakpoints) {
            #{$element}.responsive {
                font-size: $size;
                font-weight: $fw;
                padding: $py $px;
            }
        }
    }
}
Comment

PREVIOUS NEXT
Code Example
Css :: class contains css 
Css :: decrease div size 
Css :: how to move text down css 
Css :: css align backround image to the right 
Css :: how to paralax effect on background image 
Css :: how to use purgecss with webpack mix laravel 
Css :: css animation display none 
Css :: css how to change font colr 
Css :: how to define global font in css 
Css :: ellipsis css 
Css :: warning: LF will be replaced by CRLF in Design/css/bootstrap.min.css. 
Css :: wp query using the_post 
Css :: create cross icon using css 
Css :: arrow up css 
Css :: placeholder color 
Css :: change svg color css 
Css :: menu always center css 
Css :: import antd css 
Css :: how to use local fonts in css 
Css :: what does align items center do 
Css :: free computer screen recording software 
Css :: select last tr in table css 
Css :: css font family 
Css :: css select all immediate children 
Css :: on hover css 
Css :: remove or hide powered by text from Google Translate 
Css :: aligne center css 
Css :: fonmt family css 
Css :: css move element to the right 
Css :: block elements css 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =