Please do not use this tag. It is ambiguous to multiple different technologies. Instead, use tags more specific to that particular technology.
Questions tagged [mirroring]
435 questions
125
votes
5 answers
Creating an official github mirror
How do I create a github mirror for an external git repository, such that it appears as "real mirror", e.g., as in https://github.com/mirrors?
So far, I set up a mirror using:
cd /path/to/bare/repository
git remote add --mirror github…

mavam
- 12,242
- 10
- 53
- 87
71
votes
2 answers
Flipping/Inverting/Mirroring text using css only
I did some googling and here's my answer
.mirror {
display: block;
-moz-transform: matrix(-1, 0, 0, 1, 0, 0);
-webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
-o-transform: matrix(-1, 0, 0, 1, 0, 0);
}