gpt4 book ai didi

css - 如何在两行中对齐图像 avec 文本,这在 IE7 中有效?

转载 作者:行者123 更新时间:2023-11-28 13:53:44 25 4
gpt4 key购买 nike

我尝试将图像( Logo )与两行文本(网站标题和简短描述)对齐。

我试着做这个 HTML 代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr-FR" lang="fr-FR">
<head>
<link type="text/css" rel="stylesheet" href="style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div id="site">
<div id="header">
<a title="Retour à l'accueil" href="#"><img width="40" height="40" title="mon logo" alt="mon logo" src="images/logo.png"/></a>
<div class="title">
<h1>Mon site</h1>
<div>mon sous-titre avec des g et des p</div>
</div>
<div class="switchlanguage right">
<a href="#" title="english site"><strong>english</strong></a>
</div>
<div class="clear"></div>
</div>
<div id="content">
<p>homepage</p>
</div>
</div>
</body>
</html>

使用这个 style.css :

/**********
* RESET *
**********/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
/*table, caption, tbody, tfoot, thead, tr, th, td,*/
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
html {
overflow:auto;
font-size: 62.5%;
}
body {
line-height: 1;
color: #000;/*#656565;*/
}
ol, ul {
list-style-type: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/**********
* COMMON *
**********/
body {
font-family:Arial;
color:#333333;
}

.left {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
height:0;
}
#site strong {
font-weight:700;
}
#header, #content, #footer {
width: 990px;
margin-left: auto;
margin-right: auto;
padding-left:20px;
padding-right:20px;
}

/**********
* HEADER *
**********/

#header {
padding-top:20px;
padding-bottom:20px;
background-color: #FFF;
}

#header img {
float: left;
margin:0;
padding:0;
border: none;
}

#header div.title {
float: left;
padding-left:20px;
}

#header div.title h1 {
font-size:2.6em;
line-height:0.904em;
height:0.904em;
}

#header div.title div {
font-size:1.8em;
line-height:0.917em;
height:1em;
}
#header .switchlanguage {
font-size:1.1em;
}
#header .switchlanguage a {
background-image:url('images/icn_langage.png');
background-repeat:no-repeat;
background-position:left center;
padding-left:20px;
color:#333333;
text-decoration:none;
}
/**********
* CONTENT *
**********/

#content {
background-image:url('images/bg_body_repeat.jpg');
background-repeat:repeat;
min-height:400px;
padding-top:10px;
padding-bottom:20px;
border-top:1px solid #ccc;
border-bottom:1px dotted #909090;
}

但在 IE7 中,字母 p 和 g 被裁剪了。

You can see the result here

在两行中对齐图像和文本的最佳做法是什么?

最佳答案

在你的 CSS 中:

#header div.title div {
font-size: 1.8em;
line-height: 0.917em;
height: 1em;
}

增加你的line-height - 这应该解决它。确切的值需要进行一些测试并取决于您的设计。

您可能还想将文本包装在 <p> 中标签而不是 <div>标签,就像您在代码中的其他地方所做的那样 - 只是为了语义!

关于css - 如何在两行中对齐图像 avec 文本,这在 IE7 中有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11115652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com