Heej alle
Jeg har bakset med noget css og noget div, og nu har jeg også fået det til at virke.
MEN nu er min bagground begyndt at fucke
- echo "<div class=\"top\"><b>News</b></div>";
- echo "<div class=\"info\">";
- $query = mysql_query("SELECT * FROM news ORDER BY id");
- if(mysql_num_rows($query)) {
- while ($row = mysql_fetch_array($query, MYSQL_ASSOC)) {
- if($i % 2) {
- $class = "right";
- } else {
- $class = "left";
- }
- $i++;
- ?>
- <div class="news_margin">
- <div style="float: <?php echo $class; ?> ;width: 49%;">
- <div class='news_top'>
- <a href='news.php?news_id=<?php echo $row['id']; ?>'><?php echo $row['news']; ?></a>
- </div>
- <?php
- if(strlen(strip_tags($row['message'])) > 100) {
- echo "<div class='news_message'><div class='news_message_margin'>".substr($row['message'], 0, 100)." ...</div></div>";
- } else {
- echo "<div class='news_message'><div class='news_message_margin'>".substr($row['message'], 0, 100)."</div></div>";
- }
- ?>
- <br>
- </div>
- </div>
- <?php
- }
- }
- echo "</div>";
Og her er min css:
- .top {
- background: #202121;
- color: #ffffff;
- border-bottom: 1px solid #000;
- padding: 8px;
- border-top-left-radius: 0.5em;
- border-top-right-radius: 0.5em;
- -webkit-border-top-left-radius: 0.5em;
- -webkit-border-top-right-radius: 0.5em;
- -moz-border-radius-topleft: 0.5em;
- -moz-border-radius-topright: 0.5em;
- }
- .info {
- background: #dcdbdc;
- color: #000000;
- border-top: 1px solid #fff;
- border-bottom: 1px solid #bbb;
- padding: 6px;
- font-size: 12px;
- }
- .news_margin {
- margin-left: 10px;
- margin-right: 10px;
- margin-top: 10px;
- }
- .news_top {
- background: #f5f5f5;
- padding: 0;
- padding-left: 10px;
- border-top-left-radius: 0.5em;
- border-top-right-radius: 0.5em;
- -webkit-border-top-left-radius: 0.5em;
- -webkit-border-top-right-radius: 0.5em;
- -moz-border-radius-topleft: 0.5em;
- -moz-border-radius-topright: 0.5em;
- font-size: 24px;
- font-weight: bold;
- }
- .news_message {
- background: #FFFFFF;
- padding-left: 10px;
- border-bottom-left-radius: 0.5em;
- border-bottom-right-radius: 0.5em;
- -webkit-border-bottom-left-radius: 0.5em;
- -webkit-border-bottom-right-radius: 0.5em;
- -moz-border-radius-bottomleft: 0.5em;
- -moz-border-radius-bottomright: 0.5em;
- }
- .news_message_margin {
- padding-top: 10px;
- padding-bottom: 10px;
- }
Og det kommer til at se sådan her ud.
LinkNogen som kan hjælpe mig?
Indlæg senest redigeret d. 01.09.2011 13:10 af Bruger #16662