我认为这个问题与Link不在浮动div中工作有关,但我仍然无法弄明白.
我有一个div如下:
.fullwidthimage {
width: 100%;
position: relative;
z-index: -1;
}
.imageoverlay {
left: 0;
text-align: center;
position: absolute;
z-index: 1;
top: 15px;
width: 100%;
}
#homepagebutton {
position: absolute;
text-align: center;
z-index: 100;
bottom: 50px;
width: 200px;
height: 60px;
left: 50%;
margin-left: -100px;
font-size: 25px;
border: 1px solid black;
border-radius: 5px;
background-color: orange;
color: black;
text-decoration: none;
}Run Code Online (Sandbox Code Playgroud)
<div class="fullwidthimage">
<img class="noround imageundertext smallimg" src="http://placehold.it/600x800">
<img class="noround imageundertext midimg" src="http://placehold.it/1000x1000">
<img class="noround imageundertext bigimg" src="http://placehold.it/3200x1300">
<img class="noround …Run Code Online (Sandbox Code Playgroud)我在w3schools上使用的模态图像与此示例中的编码完全一致:
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() { …Run Code Online (Sandbox Code Playgroud)我有一个段落拆分如下:
<a href="#" class="nostyle">
<p>
<span class="heading">Really long heading</span><br>
<br>
Lots of text that needs to be justified
</p>
</a>
Run Code Online (Sandbox Code Playgroud)
该段落设置为text-align: justify,它需要保留在该位置。我想要的只是<span>,text-align: left这样行之间就不会形成大间隙。我怎样才能做到这一点?
我想将其全部保留为一个段落,因为它是弹性项目的一部分,并且有一个<h2>and<p>意味着它不会全部很好地工作!
谢谢。