Search
 
SCRIPT & CODE EXAMPLE
 

CSS

Creating Nike logo with CSS

/* first create a div element in your html file with "class="nike" " attribute
*/

.nike {
    position: absolute;
    overflow: hidden;
    width: 50vmin;
    aspect-ratio: 14/5;
    position: relative;


}

.nike:before {
    content: '';
    position: absolute;
    background: black;
    width: 37%;
    height: 550%;
    bottom: -134%;
    left: 70.5%;
    border-top-left-radius: 48% 17%;
    border-top-right-radius: 120% 40%;
    transform: rotate(-113deg);
    z-index: 1;
}

.nike:after {
    content: '';
    position: absolute;
    background: white;
    width: 30%;
    height: 400%;
    bottom: -73%;
    left: 64%;
    border-top-left-radius: 64% 14%;
    border-top-right-radius: 125% 46%;
    transform: rotate(-105deg);
    z-index: 2;
}
Comment

Creating Nike logo with CSS

/* first create a div element in your html file with "class="nike" " attribute
*/

.nike {
    position: absolute;
    overflow: hidden;
    width: 50vmin;
    aspect-ratio: 14/5;
    position: relative;


}

.nike:before {
    content: '';
    position: absolute;
    background: black;
    width: 37%;
    height: 550%;
    bottom: -134%;
    left: 70.5%;
    border-top-left-radius: 48% 17%;
    border-top-right-radius: 120% 40%;
    transform: rotate(-113deg);
    z-index: 1;
}

.nike:after {
    content: '';
    position: absolute;
    background: white;
    width: 30%;
    height: 400%;
    bottom: -73%;
    left: 64%;
    border-top-left-radius: 64% 14%;
    border-top-right-radius: 125% 46%;
    transform: rotate(-105deg);
    z-index: 2;
}
Comment

PREVIOUS NEXT
Code Example
Css :: target id in media query 
Css :: how to limit css to min max large screen size 
Css :: Ul or ol with no indent 
Css :: request.env.cr.execute how to get the fetched data in dictionary 
Css :: delete files with help of .getignore 
Css :: css animation click 
Css :: qa vs q! 
Css :: css opacité fond mais pas texte 
Css :: css change browser color 
Css :: total income of labrada company in india 
Css :: press on button outline shoul not appear csss 
Css :: select after not visible 
Css :: text-decoration not working in microsoft mail 
Css :: The Sass .sass file is visually different from .scss file, e.g. Example.sass - sass is the older syntax 
Css :: css margin-top 1px 9 
Css :: -webki slider runnable track 
Css :: coderbytes 
Css :: jitsi meet index.html add css version 
Css :: css color keywords 
Css :: all heading tags selector scss 
Css :: easy way raise specificity css 
Css :: au fourneua bakery 
Css :: how to open a file in vscode from terminal 
Css :: disable safari form formatting 
Css :: full calendar custom css 
Css :: poretty print css 
Css :: comment changer liens quand survolé html 
Css :: o get_template_directory_uri() 
Css :: what is css selector 
Css :: tailwindcss link tag 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =