来自边缘的保证金

时间:2015-08-20 16:34:18

标签: php css margin

保证金的问题很少,代码如下:

        echo '<p class="news_post">';
        $stripped = strip_tags($post,'<img>');
        $break = str_replace('>','><br>',$stripped);

        echo $results['post'];

        echo '</span></span>';
        $fetchtags = $results['tags'];
        $string = array ( '/\b(.*?)\b/i' );
        $replace = array ( '<a href="?inav=tag&amp;tag=$1">$1</a>' );
        $tags = preg_replace($string, $replace, $fetchtags);
        echo '<p>Tags: '.$tags.'</p>';

想从边缘10px尝试保证金帖子?还有标签

style.cs看起来像这样:

p.news_container {
    font-size:10px;
    font-family:verdana;
    color:white;
    margin-left: 10px;
    }

p.news_post {
    font-size: 13px;
    font-family:verdana;
    color: #8A8A8A;
    margin-left: 10px;
    }   

我的代码如何工作,尝试了一切。我想我搞砸了。

1 个答案:

答案 0 :(得分:0)

您还没有发布自己的HTML,我的猜测是margin-left: 10px;并不适合您,所以请尝试将其更改为:

position: relative;
left: 10px;

我很确定这应该有用。