Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

"Наклонить" меню с помощью CSS


Recommended Posts

Вот собираю магазин http://demoonline.ru/

Есть мысль для гармонии и красоты "наклонить" под углом 45 градусов правую сторону меню.

image.thumb.png.12cc7d2383e0a3fa759046ed8dba10a3.png

 

Есть такое решение в CSS?

За дельный совет и науку - бонусую.

Спасибо!

Link to comment
Share on other sites


before или after + rotate 

 

либо таких углов на CSS можно достичь с помощью свойств: border-{top,right,left,bottom}

 

div, body { margin: 0; padding: 0 }

div {
    height: 200px;
    background: green;
}

div:after {
    content: '';
  
    position: absolute;
    left: 0;
    top: 0;
    
    border-top: 30px solid white;
    border-right: 30px solid green;
}

div:before {
    content: '';
  
    position: absolute;
    right: 0;
    top: 170px;
    
    border-bottom: 30px solid white;
    border-left: 30px solid green;
}
<div></div>

 

чет по типу конструктора:

https://bennettfeely.com/clippy/

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.