0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bootstrap2.2.1をIE6で動くようにしてくれたbsieを使ってみた

Last updated at Posted at 2019-09-06
wget "https://github.com/ddouble/bsie/archive/v1.05-bs2.2.1.tar.gz"

tar xzf "v1.05-bs2.2.1.tar.gz"
  • Base · Bootstrap
  • 対応していない機能もあるため、同梱されているサンプルソースを確認。
サンプル.html
<html>
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>Hello, world!</title>

    <script src="bsie/js/jquery-1.7.2.min.js"></script>

    <!-- Le styles -->
    <link rel="stylesheet" type="text/css" href="bsie/bootstrap/css/bootstrap.css">

    <!--[if lte IE 6]>
    <link rel="stylesheet" type="text/css" href="bsie/bootstrap/css/bootstrap-ie6.css">
    <![endif]-->
    <!--[if lte IE 7]>
    <link rel="stylesheet" type="text/css" href="bsie/bootstrap/css/ie.css">
    <![endif]-->

  </head>
  <body>

    <div class="alert">
      <strong>Warning!</strong> Best check yo self, you’re not looking too good.
    </div>

  </body>
</html>
htmlファイル一覧のリンク集
<?php
$src = "";
foreach (glob("*.html") as $filename) {
    $src .= sprintf("<li><a href='%s' target='%s' />%s</a>"
                    , $filename
                    , $filename
                    , $filename
                   );
}

echo $src;
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?