質問編集履歴

1

コードの追加

2017/04/22 08:50

投稿

atomatom
atomatom

スコア17

test CHANGED
File without changes
test CHANGED
@@ -2,12 +2,168 @@
2
2
 
3
3
 
4
4
 
5
+ 追記
6
+
7
+
8
+
9
+ ヘッダー部分でBootstrapを読み込んでいます。(ロリポップの簡単インストール)。表示される画像はGetty imagesからの埋め込み画像なのですが、これが原因なのですかね?
10
+
11
+
12
+
13
+ 具体的な流れを書くと、Mysqlに保存された画像埋込コードをPHPで表示して、Bootstrapで均等に並べたいです。しかし、今のところrow-eq-heightを追加すると画像が縦に並んでしまいます...。
14
+
5
15
 
6
16
 
7
17
 
8
18
 
9
19
  ```
10
20
 
21
+ <!DOCTYPE html>
22
+
23
+ <html lang="ja">
24
+
25
+ <head>
26
+
27
+
28
+
29
+
30
+
31
+ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+ <meta charset="utf-8">
40
+
41
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
42
+
43
+ <meta name="viewport" content="width=device-width, initial-scale=1">
44
+
45
+ <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
46
+
47
+ <meta name="description" content="">
48
+
49
+ <meta name="author" content="">
50
+
51
+
52
+
53
+ <title>Footy</title>
54
+
55
+
56
+
57
+ <!-- Bootstrap core CSS -->
58
+
59
+ <link href="/aaaaa/dist/css/bootstrap.min.css" rel="stylesheet">
60
+
61
+
62
+
63
+ <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
64
+
65
+ <link href="/aaaaa/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
66
+
67
+
68
+
69
+ <!-- Custom styles for this template -->
70
+
71
+ <link href="/aaaaa/starter-template.css" rel="stylesheet">
72
+
73
+
74
+
75
+ <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
76
+
77
+ <!--[if lt IE 9]><script src="/aaaaa/assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
78
+
79
+ <script src="/aaaaa/assets/js/ie-emulation-modes-warning.js"></script>
80
+
81
+
82
+
83
+ <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
84
+
85
+ <!--[if lt IE 9]>
86
+
87
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
88
+
89
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
90
+
91
+ <![endif]-->
92
+
93
+
94
+
95
+ <meta name="google-site-verification" content="VRh_rSnTZmL4P0AAT_OBYXQyvxRJXQU459Z1e02GS10" />
96
+
97
+ </head>
98
+
99
+
100
+
101
+ <body>
102
+
103
+
104
+
105
+ <nav class="navbar navbar-inverse navbar-fixed-top">
106
+
107
+ <div class="container">
108
+
109
+ <div class="navbar-header">
110
+
111
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
112
+
113
+ <span class="sr-only">Toggle navigation</span>
114
+
115
+ <span class="icon-bar"></span>
116
+
117
+ <span class="icon-bar"></span>
118
+
119
+ <span class="icon-bar"></span>
120
+
121
+ </button>
122
+
123
+ <a class="navbar-brand" href="#">Footy</a>
124
+
125
+ </div>
126
+
127
+ <div id="navbar" class="collapse navbar-collapse">
128
+
129
+ <ul class="nav navbar-nav">
130
+
131
+ <li class="active"><a href="http://????.littlestar.jp/aaaaa/index.php">Home</a></li>
132
+
133
+ <li><a href="#">Not yet</a></li>
134
+
135
+ <li><a href="#">Not yet</a></li>
136
+
137
+ </ul>
138
+
139
+ </div><!--/.nav-collapse -->
140
+
141
+ </div>
142
+
143
+ </nav>
144
+
145
+
146
+
147
+
148
+
149
+ ```
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+ ```
166
+
11
167
  <?php
12
168
 
13
169
  ini_set('display_errors',1);