MarkTheArtist's picture
Create a site that allows me to load 2 different web pages in\n 2 frames in one HTML page. In other words, I want to be able to Have an interface that can load 2 web pages side by side.\n That are in frames
6d2b1e6 verified
raw
history blame contribute delete
412 Bytes
/* Custom styles that can't be done with Tailwind */
iframe {
background-color: #f8fafc;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.flex-col {
flex-direction: column;
}
iframe {
height: 300px;
}
}
/* Animation for frame loading */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
iframe {
animation: fadeIn 0.3s ease-in-out;
}