-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10.Bordes.html
53 lines (52 loc) · 2.53 KB
/
10.Bordes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bordes BS5</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<style type="text/css">
img{
border: 1px solid black;
margin:10px;
}
</style>
</head>
<body>
<div class="container-fluid">
<h2>Border aditivo</h2>
<img src="noticia2.webp" width="75" class="border">
<img src="noticia2.webp" width="75" class="border-top">
<img src="noticia2.webp" width="75" class="border-start">
<img src="noticia2.webp" width="75" class="border-bottom">
<img src="noticia2.webp" width="75" class="border-end">
<h2>Border sustractivo</h2>
<img src="noticia2.webp" width="75" class="border-0">
<img src="noticia2.webp" width="75" class="border-top-0">
<img src="noticia2.webp" width="75" class="border-start-0">
<img src="noticia2.webp" width="75" class="border-bottom-0">
<img src="noticia2.webp" width="75" class="border-end-0">
<h2>Border color</h2>
<img src="noticia2.webp" width="75" class="border border-primary">
<img src="noticia2.webp" width="75" class="border border-secondary">
<img src="noticia2.webp" width="75" class="border border-success">
<img src="noticia2.webp" width="75" class="border border-danger">
<img src="noticia2.webp" width="75" class="border border-warning">
<img src="noticia2.webp" width="75" class="border border-info">
<img src="noticia2.webp" width="75" class="border border-light">
<img src="noticia2.webp" width="75" class="border border-dark">
<img src="noticia2.webp" width="75" class="border border-white">
<h2>Border redondés</h2>
<img src="noticia2.webp" width="75" class="rounded">
<img src="noticia2.webp" width="75" class="rounded-top">
<img src="noticia2.webp" width="75" class="rounded-start">
<img src="noticia2.webp" width="75" class="rounded-end">
<img src="noticia2.webp" width="75" class="rounded-bottom">
<img src="noticia2.webp" width="75" class="rounded-circle">
<img src="noticia2.webp" width="75" class="rounded-0">
<h2>Juntar varias clases</h2>
<img src="noticia2.webp" class="rounded-circle border border-success">
</div>
</body>
</html>