1. 程式人生 > >css佈局小技巧之:讓一個小圖片水平靠右對齊,垂直居中

css佈局小技巧之:讓一個小圖片水平靠右對齊,垂直居中

1、要實現的效果如下圖:
這裡寫圖片描述

這裡寫圖片描述

2、css程式碼如下:

<html>
 <head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
 </head>

 <body
>
<div style="width:99%;height:200px;border:1px solid rgb(204,204,204);position:relative;"> <img src="rightto.png" style="width:10px;position:absolute;left:98%;top:50%;"> </div> </body> </html>