从网站

时间:2015-09-14 12:45:58

标签: css

我想删除this网站上的顶部空间。我尝试过使用firebug,但我无法找到顶部空间的来源。

请指导。感谢。

2 个答案:

答案 0 :(得分:2)

您无需从页面中删除hr。只需添加

<hr style="height:10px;background-color:#3E6A56;margin: 0px;">

可能hr标签在您的css某处定义了边距,这会导致额外的空间。

答案 1 :(得分:-1)

你有两种方法可以实现它, 第一个是从你的html中完全删除以下HR标记。

class Connection():
def __init__(self):
    self.db = MySQLdb.connect("localhost","root","password","some_schema")
    self.cursor = self.db.cursor()

def insert(self, image_url, hash_value):
    query = "insert into image_hash (image_url, hash) value (\"%s\",\"%s\")"%(image_url, hash_value)
    print query
    try:
        self.cursor.execute(query)
        self.db.commit()
    except Exception,e:
        self.db.rollback()
        print str(e)
def close_connection(self):
    self.db.close()

或者您可以添加0px的字体大小,以便隐藏它,如下所示。

<hr style="height:10px;background-color:#3E6A56;margin: 0px;">