Jump to content

Css Mobil Uyumluluk


Recommended Posts

  • 2 years yıl...
.project-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.project-image {
  position: relative;
  width: calc(25% - 20px);
  height: 200px;
  margin-bottom: 20px;
}

.project-image img {
  width: 100%;
  height: auto;
}

.project-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .project-image {
    width: calc(50% - 20px);
  }

  .project-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .project-image {
    width: 100%;
  }

  .project-title {
    font-size: 14px;
  }
}

CSS olarak bunu kullanacaksın.

 

bunu da html index'e göre ported edeceksin

<div class="project-container">
  <div class="project-image">
    <img src="image1.jpg" alt="Project 1">
    <div class="project-title">Project 1</div>
  </div>
  <div class="project-image">
    <img src="image2.jpg" alt="Project 2">
    <div class="project-title">Project 2</div>
  </div>
  <div class="project-image">
    <img src="image3.jpg" alt="Project 3">
    <div class="project-title">Project 3</div>
  </div>
  <div class="project-image">
    <img src="image4.jpg" alt="Project 4">
    <div class="project-title">Project 4</div>
  </div>
</div>

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...