

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Y-axis 3D transform with CSS3
You can try to run the following code to implement Y-axis 3D transform with CSS3:
Example
<html> <head> <style> div { width: 200px; height: 100px; background-color: pink; border: 1px solid black; } div#yDiv { -webkit-transform: rotateY(150deg); /* Safari */ transform: rotateY(150deg); /* Standard syntax */ } </style> </head> <body> <div> tutorialspoint.com </div> <p>Rotate Y axis</p> <div id = "yDiv"> tutorialspoint.com. </div> </body> </html>
- Related Questions & Answers
- Z-axis 3D transform with CSS3
- X-axis 3D transform with CSS3
- Transform the element using y-axis with CSS3
- Rotate transform the element by using y-axis with CSS3
- Working with CSS3 3D Transform Functions
- Transform the element by using x-axis, y-axis, and z-axis with CSS3
- A scale transform the element by using y-axis with CSS3
- Transform the element using z-axis with CSS3
- Transform the element using x-axis with CSS3
- Transform the element along with x-axis and y-axis with CSS
- Transform the element along with y-axis using CSS
- Rotate transform the element by using x-axis with CSS3
- Rotate transform the element by using z-axis with CSS3
- A scale transform the element by using x-axis with CSS3
- A scale transform the element by using z-axis with CSS3
Advertisements