私はdiv
に対してmargin
を与えようとしましたが、1つのdiv
ボックスは次の行に行きます。それを解決するには?水平divsの間にスペースを与えるには?
https://jsfiddle.net/2h25xbna/
768px境界はなぜ、消え下の画面ピクセルが行くとき、私はまたthis-
https://raw.githubusercontent.com/jhu-ep-coursera/fullstack-course4/master/assignments/assignment2/images/desktop.png
<!doctype html>
<html>
<head>
\t <title>assignment</title>
\t <meta charset="utf-8">
\t <meta name="viewport" content="width=width-device, initial-scale=1" >
\t <link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Trending Languages</h1>
<div class="row">
<div class="col-lg-4 col-md-6" ><p id="py">python</p><br><p>The computing industry progresses in two mostly independent cycles: financial and product cycles. There has been a lot of handwringing lately about where we are in the financial cycle. Financial markets get a lot of attention. </p></div>
<div class="col-lg-4 col-md-6 "><p id="js">Javascript</p><br><p>The computing industry progresses in two mostly independent cycles: financial and product cycles. There has been a lot of handwringing lately about where we are in the financial cycle. Financial markets get a lot of attention.</p></div>
<div class="col-lg-4 col-md-12" ><p id="ru">ruby</p><br><p>The computing industry progresses in two mostly independent cycles: financial and product cycles. There has been a lot of handwringing lately about where we are in the financial cycle. Financial markets get a lot of attention. </p></div>
</div>
</body>
</html>
のようにそれをしたいですか?それを解決する方法。ボックス内の右端のテキストの境界線も与えたい。私はidを使って与えることを試みたが、うまくいかなかった。
#py{
background-color: #ff9999;
float: right;
clear: left;
position: relative;
top: -15px
border-style: solid;
border-color: black;
border: 2px;
}
あなたのhtmlも表示することができますか? – Jay
あなたも完全なCSSコードを追加する必要があります –
あなたはPythonとjavascriptのdivsの間に空白が欲しいという意味ですか? – gskema