skip to Main Content

Html – [Solved]Having trouble adjusting the height of my card in bootstrap

<div class="card border-dark bg-white text-dark" style="width: 400px; height: auto; margin :10px auto "> <div class="card-header"> <h3>Register to REFILM</h3> </div> <div class="card-body"> <form action="/register" method="post"> <div class="mb-3"> <input autocomplete="off" autofocus type="text" class="form-control" name="username" placeholder="Username"> </div> {% if username_error %} <div class="alert…

VIEW QUESTION

Html – How do I display a window with information when hovering over an image?"

My code: <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Imagem com informações</title> <style> .container { position: relative; display: inline-block; } .info-box { visibility: hidden; width: 200px; background-color: #f9f9f9; color: #333; text-align: center; border-radius: 5px; padding: 10px;…

VIEW QUESTION
Back To Top
Search