.swiper{
vertical-align: top;
width: 82%;
display: inline-block;
margin: 0px 0px 20px 20px;
white-space: normal;
}
<? while ($row = mysqli_fetch_array($sql)){?>
<div class="swiper"></div>
<? }?>
當這個 while 的最後一筆時
最後那筆的 <div>
的 swiper
我想要改變樣式
將 margin: 0px 0px 20px 20px;
改為 margin: 0px 20px 20px 20px;
但最後一筆之前的所有筆數都維持不變...
請問這能怎麼做?
jQuery( ":last" )
Example:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>last demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<table>
<tr><td>First Row</td></tr>
<tr><td>Middle Row</td></tr>
<tr><td>Last Row</td></tr>
</table>
<script>
$( "tr:last" ).css({ backgroundColor: "yellow", fontWeight: "bolder" });
</script>
</body>
</html>
或用程式判斷或...等多種方式
.swiper 加上 { margin: 0px 0px 20px 20px;}
新增一個 .last {margin-right: 20px}
到 css
在最後一筆的 class 加上 last,也就是 <div class="swiper last"></div>