Centrar un div dentroo del otro
Publicado por David (5 intervenciones) el 17/07/2018 19:41:10
Alquien sabria como hacer que quedará el div circular dentro de la imagen de circulo ? muchas gracias
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<style>
#img2{
width: 90px;
height: 90px;
}
#div11{
margin-right:0 auto;
margin-left:0 auto;
}
.clasedivboton {
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
width:120px;
height:120px;
min-width:120px;
min-height:120px;
max-width:120px;
max-height:120px;
display: block;
margin-left:2%;
margin-top:2%;
}
#contenedor{
display: flex;
justify-content:center;
flex-wrap: wrap;
width:100%;
}
.sombras2{
-webkit-box-shadow: 1.5px 2.5px 2px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1.5px 2.5px 2px 0px rgba(0,0,0,0.75);
box-shadow: 1.5px 2.5px 2px 0px rgba(0,0,0,0.75);
}
.center {
margin-left: auto;
margin-right: auto;
display: block;
margin-top:25%;
}
.girasol{
background-color:#f5b539;
}
.maiz2{
background-color:#7BaD48;
}
.maiz1{
background-color:#EF7733;
}
.colza{
background-color:#DDE130;
}
.sorgo{
background-color:#793231;
}
.soja{
background-color:#b9643e;
}
#menucultivo{
margin-left:0 auto;
margin-right:0 auto;
}
.circular{
width:280px;
height:280px;
min-width:280px;
min-height:280px;
max-width:280px;
max-height:280px;
background-image:url("./circulo.png");
background-size: 220px 220px;
background-position: center 3;
background-repeat:no-repeat;
/*box-shadow:
inset 0 0 0 0 rgba(200,200,200, 0.4),/*aqui se define el primer color del hover*/
inset 0 0 0 6px rgba(214, 215, 218, 0.7),/*aqui se formatea el reborde*/
0 1px 2px rgba(0,0,0,0.1);
display: block; */
margin-left:2%;
margin-top:2%;
}
</style>
<div id="contenedor" class="">
<div id="cuadro1" class="circular">
<div id="div11" class="girasol sombras2 clasedivboton" >
<a href="" id="enlace"></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
<div id="cuadro2" class="circular">
<div id="div12" class="colza sombras2 clasedivboton">
<a href="" ></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
<div id="cuadro3" class="circular">
<div id="div13" class="maiz1 sombras2 clasedivboton">
<a href="" ></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
<div id="cuadro4" class="circular">
<div id="div14" class="maiz2 sombras2 clasedivboton">
<a href="" ></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
<div id="cuadro5" class="circular">
<div id="div15" class="sorgo sombras2 clasedivboton">
<a href="" ></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
<div id="cuadro6" class="circular">
<div id="div16" class="soja sombras2 clasedivboton">
<a href="" ></a>
<img id="img2" class=" center" src="" alt="" />
</div>
</div>
</div>
Valora esta pregunta
0