小编Geo*_*ett的帖子

无法使用HTML5/CSS居中文本

我只想简单地将文本水平居中,形式如下:

<!DOCTYPE html>
<html>
   <link rel="stylesheet" type="text/css" href="style.css">
   <div id="contact-form">  
       <head-black>STEWARD'S WEEKLY REPORT</head-black><br>
   </div>  
</html>
Run Code Online (Sandbox Code Playgroud)

style.css的内容:

#contact-form {  
    background-color:#F2F7F9;  
    width:925px;  
    padding:10px;  
    margin: 10px auto;      
    border: 6px solid #8FB5C1;  
    -moz-border-radius:25px;  
    -webkit-border-radius:25px;  
    border-radius:15px;  
    position:relative;  
}  

#contact-form head-black {  
    display:inline-block;
    font-size:14px;  
    text-decoration:underline;
    text-align:center;
}  
Run Code Online (Sandbox Code Playgroud)

文本保持左对齐.

html css html5 alignment

1
推荐指数
1
解决办法
3910
查看次数

标签 统计

alignment ×1

css ×1

html ×1

html5 ×1