bonsoir je me tourne vers vous car je cherche mais ne trouve point de solution ! j'ai un Div. vidéo dans lequel j'ai trois éléments, une vidéo, un Arrow_box et un texte , dans mon positionnement j'essai de mettre ma Arrow_box a droite de ma vidéo et mon texte en dessous, mais quoique je change mes éléments sont empilés les un au dessus des autres ou ai je trompé docteur ?

voici mon petit bout de css :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
/* partie centrale*/
 
    #video {
        position:relative;
		display:inline-block;
        left:70px;
        top: 60px;
	    margin-left: 328px;
		width:		calc(100% - (328px+220px));
		width:	    -webkit-calc(100% - (328px+220px));
		width:		-moz-calc(100% - (328px+220px));
 
    }	
 
    .video1 {
        width:360px;
        border:4px solid grey; 
        border-radius: 20px;       
    }
 
.arrow_box1 
	{
		position: relative;
		background: white;
		top: 20px;
		width:300px;
		padding: 15px 10px 15px 10px;
		border: 2px solid #C4C4C4;
		border-radius: 10px;
		list-style:	none;
		font-style:oblique;
		color: #343434;
		font-size:	1.40em;
	}
.arrow_box1:after, .arrow_box1:before 
	{
		right: 100%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}
 
.arrow_box1:after 
	{
		border-color: rgba(136, 183, 213, 0);
		border-right-color: white;
		border-width: 20px;
		top: 50%;
		margin-top: -20px;
	}
.arrow_box1:before 
	{
		border-color: rgba(194, 225, 245, 0);
		border-right-color: #C4C4C4;
		border-width: 23px;
		top: 50%;
		margin-top: -23px;
	}
 
    ul#texte {
        position:relative;
        top:60px;
        width:730px;
        border:2px solid #C4C4C4; 
        border-radius: 4px;       
        list-style:	none;
        font-style:oblique;
        color: #343434;
        font-size:	1.40em;
        font-weight:normal;
	    padding:  10px 15px 10px 15px;	      
    }
merci d'avance pour votre regard averti.

cedcyr