如何在CSS中移动左侧浮动项目的手机视图?

时间:2016-01-08 03:34:42

标签: html css twitter-bootstrap jquery-mobile

我有一个在台式电脑上看起来不错的网页,但在手机上的效果不如网格上的项目向左浮动,但我希望它们看起来居中。是否有一个简单的“@media only screen”代码我可以添加或者我可以更改为我的下面的CSS以便它以移动设备为中心?此外, div class =“col-xs-12 col-sm-6 col-lg-6”,这里是一个 Image Example: Desktop vs Mobile View

您还可以在 - http://www.helpme.ae/

查看实时示例
.GRID
width:170px;
height:235px;
background:#f4f4f4;
border:1px solid #dedede;
padding:4px;
border-radius:4px;
text-align: center;
float:left;
margin:9px;
margin-bottom:20px;
position:relative

.XOX
display: block;
margin-bottom: 3px;
margin-top: 0px; 
overflow:hidden

.widget-container
{
text-align:left
}

.widget-container ul { padding:0; margin:0; list-style-type:none }
.widget-container ul li { margin-bottom:6px; }

1 个答案:

答案 0 :(得分:0)

使用此CSS:

@media (max-width: 991px) {
  .latest-posted-tasks-big {
    text-align: center;
  }
  .latest-posted-tasks-big > * {
    text-align: initial;
  }
  .latest-posted-tasks-big > .grid_task {
    display: inline-block;
    float: none;
  }
}