我是网络开发的新手。我在我的jumbo-tron中遇到的问题是它没有增加我手机的宽度而且我的文字溢出来了。我想调整它,以便jumbotron符合" People-Things行"。这是问题图像: 这是我的Html http://pastebin.com/CgNSPLeE。
当前代码:
@media (min-width: 414px) and (max-width: 736 px) {
#main {
width: 100%;
height: 100%;
}
#people-things a {
position: relative;
padding-left: 50px;
left: 150px;
}
我做错了什么?
答案 0 :(得分:1)
<div class="jumbotron" id="main">
<div class="container-fluid">
<h1><a href="#">People-Things Recomendation</a></h1>
</div>
</div>
要更改项目的颜色等,您可以这样使用CSS:
例如,您想要更改“People-Things Recomendation”的颜色:
div#main h1 {
color: blue;
}
我希望这就是你的意思;如果不是,请告诉我。 干杯!
答案 1 :(得分:1)
您的select
'ALTER TABLE dbo.' + object_name(fk.parent_object_id) +
' ADD CONSTRAINT ' + fk.name +
' FOREIGN KEY(' + c1.name + ') REFERENCES dbo.' +
object_name(fk.referenced_object_id) + '(' + c2.name + ')' as col1
from
sys.foreign_keys fk
inner join
sys.foreign_key_columns fkc ON fk.object_id = fkc.constraint_object_id
inner join
sys.columns c1 ON fkc.parent_column_id = c1.column_id and c1.object_id = fkc.parent_object_id
inner join
sys.columns c2 ON fkc.referenced_column_id = c2.column_id and c2.object_id = fkc.referenced_object_id
public void ReinstateAllConstraints()
{
string[] reinstateAllConstraints = File.ReadAllLines(@"Utility\UnsafeStrings\reisntateconstraint.txt");
using (var connection = new SqlConnection(connectionString))
{
connection.Open();
foreach (var item in reinstateAllConstraints)
{
var command = new SqlCommand(item, connection);
command.ExecuteNonQuery();
}
connection.Close();
}
}
应位于.jumbotron
和网格div .container
内,然后它将适应其父容器。
.col-md-12
然后使用bootstrap的responsive classes/utilities进行游戏,以获得所需的效果。
*使用bootstrap并强制布局具有更多属性是一种反模式。如果使用bootstrap,请尝试使用默认类来实现所需。