Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #23117
Closed
Open
Issue created Jul 18, 2017 by Administrator@rootContributor

[css][v4] 4.0.0-alpha.6 bootstrap.min.css seems to be a RTL version (at least in terms of grid system)

Created by: tim1234ltp

Using bootstrap's grid system, I created a nice table but the column seems to be in reversed order (that is RTL, from right to left). Yet, when I used a different css: https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.css. It works perfectly. I am not sure if any other css format is affected by the new v4 alpha as well. Here is the code:

<head> 
<title>Bootstrap Example</title> 
<meta charset="UTF8"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 
</head> 

<body> 
<div class="container"> 
<table id="headerTable" class="table table-bordered "> 
<thead class="thead-default"> 
<tr> 
<th colspan="2">Header</th> 
</tr> 
</thead> 
<tbody> 
<tr> 
<th class="col-sm-2">Account Number</th> 
<td class="col-sm-10"><input id="${field}" type="text" class="input-sm"></td> 
</tr> 
<tr> 
<th class="col-sm-2">Cycle Number</th> 
<td class="col-sm-10"><input id="${field}" type="text" class="input-sm"></td> 
</tr>
</tbody> 
</table> 
</div> 
</body>
Assignee
Assign to
Time tracking