1. 在網頁設計中怎樣設計圖片在水平方向上移動
你是說寫代碼么,
2. asp網頁設計如何設定圖片的位置
首先說明下網頁載入圖片的方法:
<img src="圖片路徑" width="寬度" height="高度" alt=「圖片名稱」>
1、table表格中載入圖片
<table>
<tr>
<td>這是第一個單元格</td>
<td><img src="圖片路徑"></td>
</tr>
</table>
2、div+css通過圖層設定圖片位置
<div style="position:relative;background:#CCCCCC;width:300px; height:300px;">
<div style="position:absolute;background:#FF0000;width:100px; height:100px; top:250px; left:250px;"></div>
</div>
3. css如何控制圖片位置
1、首先我們需要插入一張圖片,並且圖片只出現一次,並設計圖片出現的位置在左上角,可以按照如下代碼來完成:
<html>
<head>
<title>圖片位置設置</title>
<style type="text/css">
body{
background-image:url("2.jpg");
background-attachment:scorll;
background-repeat:no-repeat;
background-position:top left;
}
</style>
</head>
<body>
</body>
</html>
可以看到背景圖片出現的位置在瀏覽器的左上角,這個和默認的設置是一樣的。
4. 網頁設計 如何讓圖片在左 文字在右
在dw里的時候,圖片在文字上方。在圖片的<img>里寫 float:left;
<img src="a.jpg" style="float:left;" />