我已经创建了一个正常作为div形状的div,但是我需要一个代码来使div的下边缘倾斜,并且其下的其他div同样倾斜(可能再次倾斜了边缘)。任何帮助,将不胜感激。 到目前为止,这是我的代码段:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Assignment</title>
<!-- Bootstrap Styling css-->
<style type="text/css">
.container{
width: 100%;
padding-top: 25px;
background-color: black;
height: 300px;
}
#logo{
background-color: #FFFFFF;
float: left;
border-radius: 20px;
}
#eduhead{
/*padding-left: 40px;*/
margin-left: 10px;
color: #3C89AA;
font-weight: bold;
}
#newref{
color: white;
font-size: medium;
text-align: right;
font-weight: lighter;
}
table{
width: 100%;
}
#signup{
color:#FFFFFF;
border-style: solid;
border-width: 2px;
border-color: #3C89AA;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<table>
<tr>
<th></th>
<th id="eduhead"><img src="assets/Group 31.png" id ="logo"
alt="img"> ASSIGNMENT</th>
<th><a href="" title="Blog" id="newref">Blog</a></th>
<th><a href="" title="Packages" id="newref">Packages</a></th>
<th><a href="" title="Login" id="newref">Login</a></th>
<th><a href="" title="Sign Up" id="signup">Sign Up</a></th>
</tr>
</table>
</div>
<!--Including all the JavaScript Files of bootstrap-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js">
</script>
<!--Bootstrap Scrit CDN-->
以上是我的代码,包括用于Bootstrap的所有CDN。有什么建议吗?
答案 0 :(得分:2)
Here,您会看到解决问题的不同方法。在下面的示例中,您可以调整精确值。希望对您有所帮助。
.slanted {
position: relative;
background: red;
padding: 30px;
box-sizing: border-box;
clip-path: polygon(0 0,100% 0vw,100% 75%,0 100%)
}
<div class="slanted">
Content.
</div>