我一直在閱讀html5,當時我遇到這個叫做webkit的東西。我真的不知道它是什麼或者做了什麼,所以我想出了兩個例子。HTML webkit工具
我寫的css風格有什麼區別嗎?從我看到的,這兩個CSS給了我相同的輸出。這將是一種更爲優惠的方式?
的style.css
body {
text-align: center;
}
#wrapper {
border: 4px solid black;
width:1000px;
margin:20px auto;
text-align: left;
}
#top_header {
background:yellow;
border: 2px solid blue;
padding:20px;
}
#nav_bar {
border: 2px solid red;
background:grey;
color:white;
}
#nav_bar li {
font: bold 14px Tahoma;
display:inline-block;
list-style:none;
padding: 5px;
}
v.s
的style.css
body {
width:100%;
margin:20px auto;
display:-webkit-box;
-webkit-box-pack:center;
}
#wrapper {
width: 1000px;
display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-orient:vertical;
-webkit-box-flex:1;
}
#top_header {
background:yellow;
border: 2px solid blue;
padding:20px;
}
#nav_bar {
border: 2px solid red;
background:grey;
color:white;
}
#nav_bar li {
font: bold 14px Tahoma;
display:inline-block;
list-style:none;
padding: 5px;
}
的index.html
<!DOCTYPE html>
<html-lang="en">
<head>
<meta charset=UTF-8" />
<title>Learning Web Design</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
<header id="top_header">
<h1>Learning Website </h1>
</header>
<ul>
<li>navBarOne</li>
<li>navBarTwo</li>
<li>navBarThree</li>
</ul>
</nav>
</div>
'-webkit'供應商前綴用於谷歌瀏覽器和Apple Safari網絡瀏覽器。 – mdesdev