Skip to content

Instantly share code, notes, and snippets.

@mehmetbebek
Created February 25, 2016 14:34
Show Gist options
  • Save mehmetbebek/8c6285b54489eb9a4519 to your computer and use it in GitHub Desktop.
Save mehmetbebek/8c6285b54489eb9a4519 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="style1.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Striped Rows</h2>
<p>The .table-striped class adds zebra-stripes to a table:</p>
<table class="table table-striped">
<thead>
<tr>
<th>Soru</th>
<th>Cevap</th>
<th>Aciklama</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td >
<a href="#" class="aoverflow" title="Header" data-toggle="popover" data-trigger="hover" data-content="Some content">
You are not using row-fluid in the correct place , thats why you are seeing the issue. Row-fluid creates a row inside which you can create columns using span classes , and since row-fluid uses percentage it will expand to fill all available horizontal space when on a large screen, and shrink columns to keep them from vertically stacking as the screen resizes.</td>
</a>
<td>Doe</td>
<td>john@example.com</td>
<td> <a href="#" class="btn btn-warning btn-md">
<span class="glyphicon glyphicon-edit"></span> Guncelle
</a></td>
<td> <a href="#" class="btn btn-danger btn-md">
<span class="glyphicon glyphicon-remove"></span> Sil
</a></td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
<td> <a href="#" class="btn btn-warning btn-md">
<span class="glyphicon glyphicon-edit"></span> Guncelle
</a></td>
<td> <a href="#" class="btn btn-danger btn-md">
<span class="glyphicon glyphicon-remove"></span> Sil
</a></td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
<td> <a href="#" class="btn btn-warning btn-md">
<span class="glyphicon glyphicon-edit"></span> Guncelle
</a></td>
<td> <a href="#" class="btn btn-danger btn-md">
<span class="glyphicon glyphicon-remove"></span> Sil
</a></td>
</tr>
</tbody>
</table>
</div>
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment