1. 程式人生 > 其它 >Jenkins +Docker+Git 實現自動部署

Jenkins +Docker+Git 實現自動部署

利用css來實現物件的垂直居中有許多不同的方法,比較難的是選擇那個正確的方法。我下面說明一下我看到的好的方法和怎麼來建立一個好的居中網站。

使用css實現垂直居中並不容易。有些方法在一些瀏覽器中無效。下面我們看一下使物件垂直集中的5種不同方法,以及它們各自的優缺點。

方法一

這個方法把一些div的顯示方式設定為表格,因此我們可以使用表格的vertical-alignproperty 屬性。

<div id="wrapper">
	<div id="cell">
		<div class="content">Content goes here</div>
	</div>
</div>
#wrapper {
	display: table;
}

#cell {
	display: table-cell;
	vertical-align: middle;
}

優點:

  • content可以動態改變高度(不需在 CSS 中定義)。當wrapper裡沒有足夠空間時,content不會被截斷

缺點:

  • Internet Explorer(甚至 IE8 beta)中無效,許多巢狀標籤(其實沒那麼糟糕,另一個專題)

方法二:

這個方法使用絕對定位的div,把它的top設定為50%,topmargin設定為負的content高度。這意味著物件必須在 CSS 中指定固定的高度。

因為有固定高度,或許你想給content指定overflow:auto,這樣如果content太多的話,就會出現滾動條,以免content溢位。

<div class="content"> Content goes here</div>
#content {
	position: absolute;
	top: 50%;
	height: 240px;
	margin-top: -120px; /* negative half of the height */
}

優點:

  • 適用於所有瀏覽器
  • 不需要巢狀標籤

缺點:

  • 沒有足夠空間時,content會消失(類似div在body內,當用戶縮小瀏覽器視窗,滾動條不出現的情況)

方法三

這種方法,在 content 元素外插入一個 div。設定此divheight:50%; margin-bottom:-contentheight;。
content 清除浮動,並顯示在中間。

<div id="floater">
	<div id="content">Content here</div>
</div>

#floater {
	float: left;
	height: 50%;
	margin-bottom: -120px;
}

#content {
	clear: both;
	height: 240px;
	position: relative;
}

優點:

  • 適用於所有瀏覽器
  • 沒有足夠空間時(例如:視窗縮小)content不會被截斷,滾動條出現

缺點:

  • 唯一我能想到的就是需要額外的空元素了(也沒那麼糟,又是另外一個話題)

方法四

這個方法使用了一個position:absolute,有固定寬度和高度的div。這個div被設定為top:0; bottom:0;。但是因為它有固定高度,其實並不能和上下都間距為 0,因此margin:auto;會使它居中。使用margin:auto;使塊級元素垂直居中是很簡單的。

<div id="content"> Content here</div>
#content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 240px;
	width: 70%;
}

優點:

  • 簡單

缺點:

  • IE(IE8 beta)中無效
  • 無足夠空間時,content被截斷,但是不會有滾動條出現

方法五

這個方法只能將單行文字置中。只需要簡單地把line-height設定為那個物件的height值就可以使文字居中了。

<div id="content"> Content here</div>
#content {
	height: 100px;
	line-height: 100px;
}

優點:

  • 適用於所有瀏覽器
  • 無足夠空間時不會被截斷

缺點:

  • 只對文字有效(塊級元素無效)
  • 多行時,斷詞比較糟糕

這個方法在小元素上非常有用,例如使按鈕文字或者單行文字居中。

https://www.houdianzi.com/ vi設計公司

哪個方法?

我最喜歡的是方法三,缺點不多。因為content會清除浮動,所以可以在它上面放置別的元素,並且當視窗縮放時,
居中的content不會把另外的元素蓋住。

<div id="top">
	<h1>Title</h1>
</div>
<div id="floater"></div>
<div id="content">Content Here</div>

#floater {
	float: left;
	height: 50%;
	margin-bottom: -120px;
}

#top {
	float: right;
	width: 100%;
	text-align: center;
}

#content {
	clear: both;
	height: 240px;
	position: relative;
}

現在你知道是怎麼回事了,現在我們開始建立一個簡單但是有趣的網站。最終的樣子是這樣的:

步驟一
以語義化標籤開始是很好的。下面是我們的頁面構成:

#floater (to push the content into the middle)
	#centred (the centre box)

		#side

			#logo
			#nav (unordered list <ul>)

		#content

	#bottom (for copyright, etc.)

這是我用到的 xhtml程式碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>A Centred Company</title>
<link rel="stylesheet" href="styles.css" type="text/css" media="all" />
</head>

<body>
	<div id="floater"></div>
	<div id="centered">

		<div id="side">
			<div id="logo">
				<strong><span>A</span> Company</strong>
			</div>
			<ul id="nav">
				<li><a href="#">Home</a></li>
				<li><a href="#">Products</a></li>
				<li><a href="#">Blog</a></li>
				<li><a href="#">Contact</a></li>
				<li><a href="#">About</a></li>
			</ul>
		</div>

		<div id="content">

			<h1>Page Title</h1>

			<p>Holisticly re-engineer value-added outsourcing after
				process-centric collaboration and idea-sharing. Energistically
				simplify impactful niche markets via enabled imperatives. Holisticly
				predominate premium innovation after compelling scenarios.
				Seamlessly recaptiualize high standards in human capital with
				leading-edge manufactured products. Distinctively syndicate
				standards compliant schemas before robust vortals. Uniquely
				recaptiualize leveraged web-readiness vis-a-vis out-of-the-box
				information.</p>

			<h2>Heading 2</h2>

			<p>Efficiently embrace customized web-readiness rather than
				customer directed processes. Assertively grow cross-platform
				imperatives vis-a-vis proactive technologies. Conveniently empower
				multidisciplinary meta-services without enterprise-wide interfaces.
				Conveniently streamline competitive strategic theme areas with
				focused e-markets. Phosfluorescently syndicate world-class
				communities vis-a-vis value-added markets. Appropriately reinvent
				holistic services before robust e-services.</p>

		</div>

	</div>

	<div id="bottom">
		<p>Copyright notice goes here</p>
	</div>
</body>
</html>

步驟二:
現在我們開始用一些基本的 CSS 來給頁面新增樣式。把以下程式碼放入在我們的html頁面頂部被引入的 style.css。

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	background: url('page_bg.jpg') 50% 50% no-repeat #FC3;
	font-family: Georgia, Times, serifs;
}

#floater {
	position: relative;
	float: left;
	height: 50%;
	margin-bottom: -200px;
	width: 1px;
}

#centered {
	position: relative;
	clear: left;
	height: 400px;
	width: 80%;
	max-width: 800px;
	min-width: 400px;
	margin: 0 auto;
	background: #fff;
	border: 4px solid #666;
}

#bottom {
	position: absolute;
	bottom: 0;
	right: 0;
}

#nav {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 70%;
	padding: 20px;
	margin: 10px;
}

#content {
	position: absolute;
	left: 30%;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
	height: 340px;
	padding: 20px;
	margin: 10px;
}
#centered {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #666;
}

h1 {
	color: #f93;
	border-bottom: 1px solid #ddd;
	letter-spacing: -0.05em;
	font-weight: bold;
	margin-top: 0;
	padding-top: 0;
}

#bottom {
	padding: 10px;
	font-size: 0.7em;
	color: #f03;
}

#logo {
	font-size: 2em;
	text-align: center;
	color: #999;
}

#logo strong {
	font-weight: normal;
}

#logo span {
	display: block;
	font-size: 4em;
	line-height: 0.7em;
	color: #666;
}

p, h2, h3 {
	line-height: 1.6em;
}

a {
	color: #f03;
}

在我們能夠把content垂直居中之前,body和html應該被拉伸到 100% 的高度。由於height
在padding和margin之內,所以我們要把它們設成 0 以防止因為很小的margin出現滾動條。

floater的margin-bottom是content高度(400px)的一半,-200px。

現在可以看到一下效果:

#centred的寬度為 80%。這可以市網頁隨著顯示器的大小而變化。一般稱作流體佈局。設定min-width和
max-width以避免網頁過大或者過小。 但是 IE 不支援min/max-width。顯然可以用固定寬度來代替。

因為#centred是相對定位的,在它裡面我們可以用絕對定位來定位元素。設定#content的overflow:auto;
以避免滾動條的出現。IE 不怎麼喜歡overflow:auto;除非我們指定高度(不是top和bottom的定位,也不是 %)
因此我們給它指定高度。

步驟三
最後要做的就是再新增點樣式,讓頁面好看點。從目錄開始吧。

#nav ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	text-indent: 0;
}

#nav li {
	padding: 0;
	margin: 3px;
}

#nav li a {
	display: block;
	background-color: #e8e8e8;
	padding: 7px;
	margin: 0;
	text-decoration: none;
	color: #000;
	border-bottom: 1px solid #bbb;
	text-align: right;
}

#nav li a::after {
	content: '»';
	color: #aaa;
	font-weight: bold;
	display: inline;
	float: right;
	margin: 0 2px 0 5px;
}

#nav li a:hover, #nav li a:focus {
	background: #f8f8f8;
	border-bottom-color: #777;
}

#nav li a:hover::after {
	margin: 0 0 0 7px;
	color: #f93;
}

#nav li a:active {
	padding: 8px 7px 6px 7px;
}

需要注意的是#centred的圓角。 CSS3 中,應該有border-radius屬性來設定圓角的半徑(可參考CSS3之旅: border-radius(圓角)– 糖伴西紅柿)。現在的流行的瀏覽器都還不支援,除非用-moz(Molilla Firefox) 或者-webit(Safari/Webkit) 字首.

相容性注意事項

  • 如你所想,IE 是唯一添麻煩的瀏覽器。
  • #floater必須指定寬度,否則在任意版本 IE 中,它都啥也不幹
  • IE 6 中目錄被周圍太多的空間打斷
  • IE 8 有多餘空間(作者遺漏)