<!DOCTYPE html>
<
html
>
<
head
>
<
link
rel
=
"stylesheet"
href
=
crossorigin
=
"anonymous"
>
<
script
src
=
</
script
>
<
script
src
=
crossorigin
=
"anonymous"
>
</
script
>
</
head
>
<
body
>
<
center
>
<
h2
style
=
"color: green;"
>
GeeksforGeeks
</
h2
>
<
h3
>
Foundation CSS Dropdown Explicit Positioning
</
h3
><
br
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"bottom-left"
>
Bottom Left
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"bottom"
data-alignment
=
"left"
id
=
"bottom-left"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"bottom-center"
>
Bottom Center
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"bottom"
data-alignment
=
"center"
id
=
"bottom-center"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"bottom-right"
>
Bottom Right
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"bottom"
data-alignment
=
"right"
id
=
"bottom-right"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
><
br
><
br
><
br
><
br
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"top-left"
>
Top Left
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"top"
data-alignment
=
"left"
id
=
"top-left"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"top-center"
>
Top Center
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"top"
data-alignment
=
"center"
id
=
"top-center"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
>
<
button
class
=
"button"
type
=
"button"
data-toggle
=
"top-right"
>
Top Right
</
button
>
<
div
class
=
"dropdown-pane"
data-position
=
"top"
data-alignment
=
"right"
id
=
"top-right"
data-dropdown>
<
strong
>
GeeksforGeeks
</
strong
>
</
div
>
</
center
>
<
script
>
$(document).ready(function() {
$(document).foundation(); })
</
script
>
</
body
>
</
html
>