這篇文章主要介紹php實作動態讀取資料清除最右邊距的方法,有興趣的朋友參考下,希望對大家有幫助。
需求效果一行3欄:
#場景模擬:同事給了我這麼一段靜態程式碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <style> li,ul{padding: 0;margin:0;list-style: none;} .box{ width:1000px;background: #ddd;height:500px; } .box li{margin:0 50px 20px 0;background:red;height:30px;width:300px;float: left;} </style> <body> <p class="box"> <ul> <?php for($i=0;$i<9;$i++){ echo '<li></li>'; } ?> </ul> </p> </body> </html>
可是動態讀取是統一的呀?寬度不夠咋辦捏?錯誤的換行效果並不是我們想要的!
#解決方案一:樣式加寬隱藏
<style> li,ul{padding: 0;margin:0;list-style: none;} .box{ width:1000px;background: #ddd;height:500px;overflow: hidden; } .box ul{width: 1200px;} .box li{margin:0 50px 20px 0;background:red;height:30px;width:300px;float: left;} </style>
預覽正常:
#解決方案二:php判斷,清除最右欄邊距
<p class="box"> <ul> <?php //列数 $col=3; for($i=0;$i<9;$i++){ $margin_r = (($i%$col)==($col-1))?"margin-right:0;":"";//清除每行最右侧宝贝右边距 echo '<li style="'.$margin_r.'">'.$i%$col.'</li>'; } ?> </ul> </p>
方案一和方案二都是可以實現一樣的效果!
以上就是本文的全部內容,希望對大家的學習有幫助。
相關建議:
# php四個函數shell_exec, exec, passthru, system分別的使用場景
以上是php實作動態讀取資料清除最右邊距的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!