我需要帮助。我写的代码和发生的事情看起来不太好。在我的div之间我有我想要消失的线条。如何实现这一目标?链接到我的代码https://jsfiddle.net/g1shy0rm/的html。这也是我的css。
/* style.css */
body{
background-color: rgb(240,240,240);
color: rgb(20,20,20);
font-family: 'Open Sans', sans-serif;
margin: 0;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 50px;
color: rgb(99, 221, 43);
}
h2 {
font-family: 'Roboto', sans-serif;
font-size: 18px;
}
a {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: none;
color: green;
}
#banner {
background-image: url("https://picsum.photos/1000/600?random");
background-size: cover;
padding: 150px 0;
text-align: center;
color: white;
}
#banner h1 {
color: white;
}
#banner p {
color: white;
font-size: 30px;
font-weight: lighter;
opacity: 0.7;
}
.card {
text-align:center;
display:block;
}
#footer {
background: black;
color: white;
font-size: 20px;
padding: 20px;
}
#footer a {
color: grey;
}
#footer a:hover {
color: white;
}
答案 0 :(得分:1)
你的css第50行让它
class sub1:
exec(open('../sub1/__init__.py', 'r').read(), locals(), locals())
class Module:
exec(open('../sub1/module1.py', 'r').read(), locals(), locals())
cus = sub1.Module()
del sub1
div.card {
text-align: center;
display: block;
border: none;
}
是解决方案,但为了提高特异性,我添加了border: none
作为选择器
答案 1 :(得分:0)
在.card.scss:6
你有这个代码
.card {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
所以你应该为边框添加.card的重新定义,例如:
.card {
border: none;
}
答案 2 :(得分:0)
@Input() type: any;
@Input() message: any;
@Input() timeout: any;
@Input() display: any;
constructor() { }
ngAfterViewInit() {
if (document.getElementById("notification")) {
document.getElementById("notification").style.display = this.display;
}
}
没有!important,border:none赢得了覆盖边框样式。
答案 3 :(得分:0)
删除位于第6行<%
dim con, rs, sql
Set con = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
con.open("DRIVER={Microsoft Access Driver (*.mdb, *.accdb)}; DBQ=" & Server.MapPath("Lego.accdb"))
sql = "SELECT * FROM Table1"
rs.Open sql, con
%>
的{{1}}中的以下值:
.card
你的问题会消失。
card.scss
如果你删除它,你也可以删除border: 1px solid rgba(0,0,0,.125);
,因为如果没有边框就不需要它。