Person
我没有获得第二个Address
的边框。在Chrome中的开发者控制台中显示,但在网页上它没有显示。
答案 0 :(得分:0)
使用另一个ID代替数字。
#include<iostream>
using namespace std;
int main(){
class c1{
public:
int i;
};
class c2:virtual public c1{
public:
int j;
};
class c3:public c1{
public:
int k;
};
class c4:public c2,public c3{
};
c4 inst1; //Its an error which indicates multiple base classes have beeen inherited
inst1.i=34;
}
&#13;
答案 1 :(得分:0)
CSS类和ID名称不能以数值开头。使用其他任何内容,例如<div id="first"></div>
,它都可以使用。
<!Doctype html>
<html>
<head>
<title></title>
<Style type="text/css">
#header{border:1px solid #000;}
#first{border:1px solid #000;
background-color:green;}
</style>
</head>
<body>
<script></script>
<div id="header">
<h1>...</h1>
</div><br>
<div id="first">
<input type="text" name="JDate" placeholder="OnBoardDate"><br>
<input type="text" name="RDate" placeholder="ReturnDate"><br>
</div>
</body>
</html>
&#13;
希望这个帮助